summaryrefslogtreecommitdiff
path: root/contrib/chsh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/chsh')
-rw-r--r--contrib/chsh27
1 files changed, 27 insertions, 0 deletions
diff --git a/contrib/chsh b/contrib/chsh
new file mode 100644
index 00000000..46ee029f
--- /dev/null
+++ b/contrib/chsh
@@ -0,0 +1,27 @@
+# chsh(1) completion
+
+_chsh()
+{
+ local cur prev
+
+ COMPREPLY=()
+ cur=`_get_cword`
+ prev=${COMP_WORDS[COMP_CWORD-1]}
+
+ if [ "$prev" = "-s" ]; then
+ _shells
+ else
+ COMPREPLY=( $( compgen -u -- "$cur" ) )
+ fi
+
+ return 0
+}
+complete -F _chsh chsh
+
+# 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