2011-11-01 22:14:45 +02:00
|
|
|
# chsh(1) completion -*- shell-script -*-
|
2009-10-01 20:54:51 +03:00
|
|
|
|
cal,chfn,chsh,dmesg,eject,hexdump,look,newgrp,renice,runuser,su,write: Deprecate on Linux in favor of util-linux ones (Debian: #737672)
2014-02-08 19:34:02 +02:00
|
|
|
# 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()
|
|
|
|
{
|
2011-04-20 14:42:30 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
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
|
|
|
|
|
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
|
2011-04-27 18:33:12 +03:00
|
|
|
_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-01 20:54:51 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|