/bash_completion.d/chsh
http://github.com/brinkman83/bashrc · #! · 27 lines · 22 code · 5 blank · 0 comment · 0 complexity · d6a9a470197f5765f95380553de755ef MD5 · raw file
- # 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