40 lines
739 B
Plaintext
Raw Normal View History

2009-06-05 08:36:22 +02:00
# chsh(1) completion
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=()
_get_comp_words_by_ref cur prev
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
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
# 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