diff options
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/waitpid | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bash-completion/waitpid b/bash-completion/waitpid index 67601bb8f7..60ea275afc 100644 --- a/bash-completion/waitpid +++ b/bash-completion/waitpid @@ -9,6 +9,9 @@ _waitpid_module() COMPREPLY=( $(compgen -W "seconds" -- $cur) ) return 0 ;; + '-c'|'--count') + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; @@ -18,6 +21,7 @@ _waitpid_module() OPTS="--verbose --timeout --exited + --count --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) |
