2009-06-05 08:36:22 +02:00
|
|
|
# chsh(1) completion
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2011-04-05 00:35:51 +03:00
|
|
|
have chsh || return
|
|
|
|
|
2009-06-05 08:36:22 +02:00
|
|
|
_chsh()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
local cur prev
|
2009-06-05 08:36:22 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=()
|
2010-02-08 17:25:08 +01:00
|
|
|
_get_comp_words_by_ref cur prev
|
2009-06-05 08:36:22 +02:00
|
|
|
|
2009-12-30 00:39:59 +01: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
|
|
|
|
|
|
|
|
if [[ "$cur" == -* && "$( uname -s )" == @(Linux|GNU|GNU/*) ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '--shell --list-shells --help --version' \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
else
|
|
|
|
COMPREPLY=( $( compgen -u -- "$cur" ) )
|
|
|
|
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-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|