From c6f8c3f5cec47bb71b59cdf9a8d8aaf98055caf6 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 24 Mar 2013 17:19:09 +0000 Subject: bash-completion: sys-utils Signed-off-by: Sami Kerola --- shell-completion/prlimit | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 shell-completion/prlimit (limited to 'shell-completion/prlimit') diff --git a/shell-completion/prlimit b/shell-completion/prlimit new file mode 100644 index 000000000..bf5ff2f3b --- /dev/null +++ b/shell-completion/prlimit @@ -0,0 +1,60 @@ +_prlimit_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-p'|'--pid') + PIDS=$(for I in /proc/[0-9]*; do echo ${I##"/proc/"}; done) + COMPREPLY=( $(compgen -W "$PIDS" -- $cur) ) + return 0 + ;; + '-o'|'--output') + # FIXME: how to append to a string with compgen? + local OUTPUT + OUTPUT="DESCRIPTION RESOURCE SOFT HARD UNITS" + compopt -o nospace + COMPREPLY=( $(compgen -W "$OUTPUT" -S ',' -- $cur) ) + return 0 + ;; + esac + case $cur in + '=') + cur=${cur#=} + # FIXME: is there anything what could be printed + # as limit value(s) + ;; + -*) + OPTS="-p --pid + -o --output + --noheadings + --raw + --verbose + -h --help + -V --version + -c= --core= + -d= --data= + -e= --nice= + -f= --fsize= + -i= --sigpending= + -l= --memlock= + -m= --rss= + -n= --nofile= + -q= --msgqueue= + -r= --rtprio= + -s= --stack= + -t= --cpu= + -u= --nproc= + -v= --as= + -x= --locks= + -y --rttime" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + compopt -o bashdefault + COMPREPLY=( $(compgen -c -- $cur) ) + return 0 +} +complete -F _prlimit_module prlimit -- cgit v1.2.3-55-g7522