]> git.ipfire.org Git - thirdparty/util-linux.git/blame - bash-completion/setpgid
Merge branch 'master' of https://github.com/biubiuzy/util-linux
[thirdparty/util-linux.git] / bash-completion / setpgid
CommitLineData
f092076f
DDM
1_setpgid_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 '-h'|'--help'|'-V'|'--version')
9 return 0
10 ;;
11 esac
12 case $cur in
13 -*)
14 OPTS="--foreground --help --version"
15 COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
16 return 0
17 ;;
18 esac
19 compopt -o bashdefault
20 COMPREPLY=( $(compgen -c -- $cur) )
21 return 0
22}
23complete -F _setpgid_module setpgid