32 lines
676 B
Plaintext
Raw Normal View History

# chsh(1) completion -*- shell-script -*-
# Use of this file is deprecated on Linux. Upstream completion is
# available in util-linux >= 2.23, use that instead.
2009-06-05 08:36:22 +02:00
_chsh()
{
local cur prev words cword
_init_completion || return
2009-06-05 08:36:22 +02:00
case $prev in
2009-12-26 12:31:26 +02:00
--list-shells|--help|-v|--version)
return 0
;;
-s|--shell)
_shells
return 0
;;
esac
2011-05-15 20:10:37 +03:00
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
else
_allowed_users
2009-10-04 19:42:50 +02:00
fi
2009-06-05 08:36:22 +02:00
2009-10-04 19:42:50 +02:00
return 0
2011-04-04 22:14:39 +03:00
} &&
2009-06-05 08:36:22 +02:00
complete -F _chsh chsh
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh