]> git.ipfire.org Git - thirdparty/util-linux.git/blobdiff - bash-completion/newgrp
bash-completion: Don't offer any more completions after help or version.
[thirdparty/util-linux.git] / bash-completion / newgrp
index 567c08cfcbd5a8222e90c874f58a1dc35b279d03..3e080dfd32e37240b49729e59a070d23305564b3 100644 (file)
@@ -3,6 +3,12 @@ _newgrp_module()
        local cur prev OPTS
        COMPREPLY=()
        cur="${COMP_WORDS[COMP_CWORD]}"
+       prev="${COMP_WORDS[COMP_CWORD-1]}"
+       case $prev in
+               '-h'|'--help'|'-V'|'--version')
+                       return 0
+                       ;;
+       esac
        case $cur in
                -*)
                        OPTS="-V --version -h --help"