diff options
Diffstat (limited to 'bash-completion/waitpid')
-rw-r--r-- | bash-completion/waitpid | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/bash-completion/waitpid b/bash-completion/waitpid new file mode 100644 index 0000000..60ea275 --- /dev/null +++ b/bash-completion/waitpid @@ -0,0 +1,37 @@ +_waitpid_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-t'|'--timeout') + COMPREPLY=( $(compgen -W "seconds" -- $cur) ) + return 0 + ;; + '-c'|'--count') + return 0 + ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + case $cur in + -*) + OPTS="--verbose + --timeout + --exited + --count + --help + --version" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + *) + _pids + return 0 + ;; + esac + return 0 +} +complete -F _waitpid_module waitpid |