]> git.ipfire.org Git - thirdparty/util-linux.git/blob - bash-completion/chfn
su: use lib/pty-session.c code for --pty
[thirdparty/util-linux.git] / bash-completion / chfn
1 _chfn_module()
2 {
3 local cur prev OPTS
4 COMPREPLY=()
5 cur="${COMP_WORDS[COMP_CWORD]}"
6 prev="${COMP_WORDS[COMP_CWORD-1]}"
7 case $prev in
8 '-u'|'--help'|'-v'|'--version')
9 return 0
10 ;;
11 esac
12 case $cur in
13 -*)
14 OPTS="--full-name --office --office-phone --home-phone --help --version"
15 COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
16 return 0
17 ;;
18 esac
19 COMPREPLY=( $(compgen -u -- $cur) )
20 return 0
21 }
22 complete -F _chfn_module chfn