Split chown, chgrp, and id completions into contrib/coreutils.
This commit is contained in:
parent
6068efc01f
commit
bf0ec3ce0e
1
CHANGES
1
CHANGES
@ -57,6 +57,7 @@ bash-completion (2.x)
|
|||||||
* Split sshfs completion from contrib/ssh into contrib/sshfs.
|
* Split sshfs completion from contrib/ssh into contrib/sshfs.
|
||||||
* Split mount and umount completion into contrib/mount.
|
* Split mount and umount completion into contrib/mount.
|
||||||
* Split service completion into contrib/service.
|
* Split service completion into contrib/service.
|
||||||
|
* Split chown, chgrp, and id completions into contrib/coreutils.
|
||||||
* Do basic HTML file completion with Firefox and Chrome and friends,
|
* Do basic HTML file completion with Firefox and Chrome and friends,
|
||||||
and Epiphany.
|
and Epiphany.
|
||||||
* Do basic diff/patch completion with cdiff and kompare.
|
* Do basic diff/patch completion with cdiff and kompare.
|
||||||
|
@ -25,6 +25,7 @@ bashcomp_DATA = contrib/abook \
|
|||||||
contrib/cksfv \
|
contrib/cksfv \
|
||||||
contrib/clisp \
|
contrib/clisp \
|
||||||
contrib/configure \
|
contrib/configure \
|
||||||
|
contrib/coreutils \
|
||||||
contrib/cowsay \
|
contrib/cowsay \
|
||||||
contrib/cpan2dist \
|
contrib/cpan2dist \
|
||||||
contrib/cpio \
|
contrib/cpio \
|
||||||
|
114
bash_completion
114
bash_completion
@ -1083,101 +1083,6 @@ _dvd_devices()
|
|||||||
kernel buildworld' make
|
kernel buildworld' make
|
||||||
|
|
||||||
|
|
||||||
# chown(1) completion
|
|
||||||
#
|
|
||||||
_chown()
|
|
||||||
{
|
|
||||||
local cur prev split=false
|
|
||||||
|
|
||||||
# Get cur and prev words; but don't treat user:group as separate words.
|
|
||||||
cur=`_get_cword :`
|
|
||||||
prev=`_get_pword :`
|
|
||||||
|
|
||||||
_split_longopt && split=true
|
|
||||||
|
|
||||||
case "$prev" in
|
|
||||||
--from)
|
|
||||||
_usergroup
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
--reference)
|
|
||||||
_filedir
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
$split && return 0
|
|
||||||
|
|
||||||
if [[ "$cur" == -* ]]; then
|
|
||||||
# Complete -options
|
|
||||||
local w opts
|
|
||||||
for w in "${COMP_WORDS[@]}" ; do
|
|
||||||
[[ "$w" == -@(R|-recursive) ]] && opts="-H -L -P" && break
|
|
||||||
done
|
|
||||||
COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes --dereference \
|
|
||||||
--no-dereference --from --silent --quiet --reference --recursive \
|
|
||||||
--verbose --help --version $opts' -- "$cur" ) )
|
|
||||||
else
|
|
||||||
local args
|
|
||||||
|
|
||||||
# The first argument is an usergroup; the rest are filedir.
|
|
||||||
_count_args :
|
|
||||||
|
|
||||||
if [[ $args == 1 ]]; then
|
|
||||||
_usergroup
|
|
||||||
else
|
|
||||||
_filedir
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
} # _chown()
|
|
||||||
complete -F _chown -o filenames chown
|
|
||||||
|
|
||||||
|
|
||||||
# chgrp(1) completion
|
|
||||||
#
|
|
||||||
_chgrp()
|
|
||||||
{
|
|
||||||
local cur prev split=false
|
|
||||||
|
|
||||||
COMPREPLY=()
|
|
||||||
cur=`_get_cword`
|
|
||||||
cur=${cur//\\\\/}
|
|
||||||
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
||||||
|
|
||||||
_split_longopt && split=true
|
|
||||||
|
|
||||||
if [[ "$prev" == --reference ]]; then
|
|
||||||
_filedir
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
$split && return 0
|
|
||||||
|
|
||||||
# options completion
|
|
||||||
if [[ "$cur" == -* ]]; then
|
|
||||||
local w opts
|
|
||||||
for w in "${COMP_WORDS[@]}" ; do
|
|
||||||
[[ "$w" == -@(R|-recursive) ]] && opts="-H -L -P" && break
|
|
||||||
done
|
|
||||||
COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes --dereference \
|
|
||||||
--no-dereference --silent --quiet --reference --recursive \
|
|
||||||
--verbose --help --version $opts' -- "$cur" ) )
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# first parameter on line or first since an option?
|
|
||||||
if [[ $COMP_CWORD -eq 1 && "$cur" != -* || "$prev" == -* ]]; then
|
|
||||||
local IFS=$'\n'
|
|
||||||
COMPREPLY=( $( compgen -g "$cur" 2>/dev/null ) )
|
|
||||||
else
|
|
||||||
_filedir || return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
return 0
|
|
||||||
} # _chgrp()
|
|
||||||
complete -F _chgrp -o filenames chgrp
|
|
||||||
|
|
||||||
|
|
||||||
# renice(8) completion
|
# renice(8) completion
|
||||||
#
|
#
|
||||||
_renice()
|
_renice()
|
||||||
@ -1759,25 +1664,6 @@ _look()
|
|||||||
} &&
|
} &&
|
||||||
complete -F _look -o default look
|
complete -F _look -o default look
|
||||||
|
|
||||||
# id(1) completion
|
|
||||||
#
|
|
||||||
have id &&
|
|
||||||
_id()
|
|
||||||
{
|
|
||||||
local cur
|
|
||||||
|
|
||||||
COMPREPLY=()
|
|
||||||
cur=`_get_cword`
|
|
||||||
|
|
||||||
if [[ "$cur" == -* ]]; then
|
|
||||||
COMPREPLY=( $( compgen -W '-a -g --group -G --groups -n --name\
|
|
||||||
-r --real -u --user --help --version' -- "$cur" ) )
|
|
||||||
else
|
|
||||||
COMPREPLY=( $( compgen -u "$cur" ) )
|
|
||||||
fi
|
|
||||||
} &&
|
|
||||||
complete -F _id id
|
|
||||||
|
|
||||||
_filedir_xspec()
|
_filedir_xspec()
|
||||||
{
|
{
|
||||||
local IFS cur xspec
|
local IFS cur xspec
|
||||||
|
124
contrib/coreutils
Normal file
124
contrib/coreutils
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
# Completions for various core utilities
|
||||||
|
|
||||||
|
# chown(1) completion
|
||||||
|
#
|
||||||
|
have chown &&
|
||||||
|
_chown()
|
||||||
|
{
|
||||||
|
local cur prev split=false
|
||||||
|
|
||||||
|
# Get cur and prev words; but don't treat user:group as separate words.
|
||||||
|
cur=`_get_cword :`
|
||||||
|
prev=`_get_pword :`
|
||||||
|
|
||||||
|
_split_longopt && split=true
|
||||||
|
|
||||||
|
case "$prev" in
|
||||||
|
--from)
|
||||||
|
_usergroup
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--reference)
|
||||||
|
_filedir
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
$split && return 0
|
||||||
|
|
||||||
|
if [[ "$cur" == -* ]]; then
|
||||||
|
# Complete -options
|
||||||
|
local w opts
|
||||||
|
for w in "${COMP_WORDS[@]}" ; do
|
||||||
|
[[ "$w" == -@(R|-recursive) ]] && opts="-H -L -P" && break
|
||||||
|
done
|
||||||
|
COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes --dereference \
|
||||||
|
--no-dereference --from --silent --quiet --reference --recursive \
|
||||||
|
--verbose --help --version $opts' -- "$cur" ) )
|
||||||
|
else
|
||||||
|
local args
|
||||||
|
|
||||||
|
# The first argument is an usergroup; the rest are filedir.
|
||||||
|
_count_args :
|
||||||
|
|
||||||
|
if [[ $args == 1 ]]; then
|
||||||
|
_usergroup
|
||||||
|
else
|
||||||
|
_filedir
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
complete -F _chown -o filenames chown
|
||||||
|
|
||||||
|
|
||||||
|
# chgrp(1) completion
|
||||||
|
#
|
||||||
|
have chgrp &&
|
||||||
|
_chgrp()
|
||||||
|
{
|
||||||
|
local cur prev split=false
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=`_get_cword`
|
||||||
|
cur=${cur//\\\\/}
|
||||||
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||||
|
|
||||||
|
_split_longopt && split=true
|
||||||
|
|
||||||
|
if [[ "$prev" == --reference ]]; then
|
||||||
|
_filedir
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
$split && return 0
|
||||||
|
|
||||||
|
# options completion
|
||||||
|
if [[ "$cur" == -* ]]; then
|
||||||
|
local w opts
|
||||||
|
for w in "${COMP_WORDS[@]}" ; do
|
||||||
|
[[ "$w" == -@(R|-recursive) ]] && opts="-H -L -P" && break
|
||||||
|
done
|
||||||
|
COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes --dereference \
|
||||||
|
--no-dereference --silent --quiet --reference --recursive \
|
||||||
|
--verbose --help --version $opts' -- "$cur" ) )
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# first parameter on line or first since an option?
|
||||||
|
if [[ $COMP_CWORD -eq 1 && "$cur" != -* || "$prev" == -* ]]; then
|
||||||
|
local IFS=$'\n'
|
||||||
|
COMPREPLY=( $( compgen -g "$cur" 2>/dev/null ) )
|
||||||
|
else
|
||||||
|
_filedir || return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
return 0
|
||||||
|
} &&
|
||||||
|
complete -F _chgrp -o filenames chgrp
|
||||||
|
|
||||||
|
# id(1) completion
|
||||||
|
#
|
||||||
|
have id &&
|
||||||
|
_id()
|
||||||
|
{
|
||||||
|
local cur
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=`_get_cword`
|
||||||
|
|
||||||
|
if [[ "$cur" == -* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '-a -g --group -G --groups -n --name\
|
||||||
|
-r --real -u --user --help --version' -- "$cur" ) )
|
||||||
|
else
|
||||||
|
COMPREPLY=( $( compgen -u "$cur" ) )
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
complete -F _id id
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-basic-offset: 4
|
||||||
|
# sh-indent-comment: t
|
||||||
|
# indent-tabs-mode: nil
|
||||||
|
# End:
|
||||||
|
# ex: ts=4 sw=4 et filetype=sh
|
1
test/completion/chgrp.exp
Normal file
1
test/completion/chgrp.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions chgrp
|
20
test/lib/completions/chgrp.exp
Normal file
20
test/lib/completions/chgrp.exp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
proc setup {} {
|
||||||
|
save_env
|
||||||
|
}; # setup()
|
||||||
|
|
||||||
|
|
||||||
|
proc teardown {} {
|
||||||
|
assert_env_unmodified
|
||||||
|
}; # teardown()
|
||||||
|
|
||||||
|
|
||||||
|
setup
|
||||||
|
|
||||||
|
|
||||||
|
assert_complete_any "chgrp "
|
||||||
|
|
||||||
|
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
teardown
|
Loading…
x
Reference in New Issue
Block a user