]> git.ipfire.org Git - thirdparty/util-linux.git/blame - bash-completion/namei
su: use lib/pty-session.c code for --pty
[thirdparty/util-linux.git] / bash-completion / namei
CommitLineData
76dceb10
SK
1_namei_module()
2{
3 local cur prev OPTS
4 COMPREPLY=()
5 cur="${COMP_WORDS[COMP_CWORD]}"
d4f9b8d7
VS
6 prev="${COMP_WORDS[COMP_CWORD-1]}"
7 case $prev in
8 '-h'|'--help'|'-V'|'--version')
9 return 0
10 ;;
11 esac
76dceb10
SK
12 case $cur in
13 -*)
0d5b9b8a 14 OPTS="--help --version --mountpoints --modes --owners --long --nosymlinks --vertical"
76dceb10
SK
15 COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
16 return 0
17 ;;
18 esac
ce3e6b15 19 local IFS=$'\n'
76dceb10
SK
20 compopt -o filenames
21 COMPREPLY=( $(compgen -f -- $cur) )
22 return 0
23}
24complete -F _namei_module namei