diff options
Diffstat (limited to 'bash-completion/taskset')
-rw-r--r-- | bash-completion/taskset | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bash-completion/taskset b/bash-completion/taskset index 5311316a..c7d819b5 100644 --- a/bash-completion/taskset +++ b/bash-completion/taskset @@ -23,6 +23,9 @@ _taskset_module() COMPREPLY=( $(compgen -W "$PIDS" -- $cur) ) return 0 ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; esac case $cur in -*) |