diff options
Diffstat (limited to 'completions/nproc')
-rw-r--r-- | completions/nproc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/completions/nproc b/completions/nproc new file mode 100644 index 0000000..50273f0 --- /dev/null +++ b/completions/nproc @@ -0,0 +1,23 @@ +# nproc(1) completion -*- shell-script -*- + +_nproc() +{ + local cur prev words cword split + _init_completion -s || return + + case $prev in + --help | --version | --ignore) + return + ;; + esac + + $split && return + + if [[ $cur == -* ]]; then + COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")) + [[ ${COMPREPLY-} == *= ]] && compopt -o nospace + fi +} && + complete -F _nproc nproc + +# ex: filetype=sh |