37 lines
847 B
Plaintext
Raw Normal View History

2009-05-17 22:10:01 +02:00
# bash completion for dd
_dd()
{
local cur prev words cword
_init_completion -n = || return
2009-05-17 22:10:01 +02:00
case $cur in
2010-10-24 12:37:22 +03:00
if=*|of=*)
cur=${cur#*=}
_filedir
return 0
;;
conv=*)
cur=${cur#*=}
COMPREPLY=( $( compgen -W 'ascii ebcdic ibm block unblock lcase
notrunc ucase swab noerror sync' -- "$cur" ) )
return 0
;;
2009-10-04 19:42:50 +02:00
esac
2009-05-17 22:10:01 +02:00
2009-10-04 19:42:50 +02:00
_expand || return 0
2009-05-17 22:10:01 +02:00
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) \
2010-10-24 12:37:22 +03:00
$( compgen -W 'bs cbs conv count ibs if obs of seek skip' \
-S '=' -- "$cur" ) )
2009-05-17 22:10:01 +02:00
} &&
complete -F _dd -o nospace dd
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh