fish-shell/share/completions/chsh.fish
2015-10-21 12:38:45 +02:00

10 lines
392 B
Fish

#
# Completions for the chsh command
#
# This grep tries to match nonempty lines that do not start with hash
complete -c chsh -s s -l shell -x -a "(string match -r '^[^#].*' < /etc/shells)" -d "Specify your login shell"
complete -c chsh -s u -l help -d "Display help and exit "
complete -c chsh -s v -l version -d "Display version and exit"
complete -x -c chsh -a "(__fish_complete_users)"