shitbox/pkg/usr/share/zsh/site-functions/_nproc

32 lines
661 B
Plaintext

#compdef nproc
autoload -U is-at-least
_nproc() {
typeset -A opt_args
typeset -a _arguments_options
local ret=1
if is-at-least 5.2; then
_arguments_options=(-s -S -C)
else
_arguments_options=(-s -C)
fi
local context curcontext="$curcontext" state line
_arguments "${_arguments_options[@]}" \
'-a[Print the number of installed processors]' \
'--all[Print the number of installed processors]' \
'-h[Print help]' \
'--help[Print help]' \
&& ret=0
}
(( $+functions[_nproc_commands] )) ||
_nproc_commands() {
local commands; commands=()
_describe -t commands 'nproc commands' commands "$@"
}
_nproc "$@"