split dd completion

This commit is contained in:
Guillaume Rousse 2009-05-17 22:10:01 +02:00
parent ce78770724
commit c676126570
2 changed files with 35 additions and 33 deletions

View File

@ -6549,39 +6549,6 @@ _stream()
complete -F _stream $filenames stream
}
# dd(1) completion
#
have dd &&
_dd()
{
local cur
COMPREPLY=()
cur=`_get_cword`
case "$cur" in
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
;;
esac
_expand || return 0
COMPREPLY=( $( compgen -W '--help --version' -- $cur ) \
$( compgen -W 'bs cbs conv count ibs if obs of seek skip'\
-S '=' -- $cur ) )
} &&
complete -F _dd $nospace $filenames dd
# CUPS cancel(1) completion
#
have cancel &&

35
contrib/dd Normal file
View File

@ -0,0 +1,35 @@
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
# ex: ts=8 sw=8 noet filetype=sh
#
# bash completion for dd
have dd &&
_dd()
{
local cur
COMPREPLY=()
cur=`_get_cword`
case "$cur" in
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
;;
esac
_expand || return 0
COMPREPLY=( $( compgen -W '--help --version' -- $cur ) \
$( compgen -W 'bs cbs conv count ibs if obs of seek skip'\
-S '=' -- $cur ) )
} &&
complete -F _dd $nospace $filenames dd