summaryrefslogtreecommitdiff
path: root/completions/nproc
diff options
context:
space:
mode:
Diffstat (limited to 'completions/nproc')
-rw-r--r--completions/nproc21
1 files changed, 21 insertions, 0 deletions
diff --git a/completions/nproc b/completions/nproc
new file mode 100644
index 00000000..8903940e
--- /dev/null
+++ b/completions/nproc
@@ -0,0 +1,21 @@
+# 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