summaryrefslogtreecommitdiffstats
path: root/bash-completion
diff options
context:
space:
mode:
authorKarel Zak2018-04-16 12:53:39 +0200
committerKarel Zak2018-04-16 12:53:39 +0200
commit8fa223daba1963c34cc828075ce6773ff01fafe3 (patch)
tree2c204a62f432aeb5e3830e370b1cc04c9eadad16 /bash-completion
parentlslocks: fix memory leak (diff)
downloadkernel-qcow2-util-linux-8fa223daba1963c34cc828075ce6773ff01fafe3.tar.gz
kernel-qcow2-util-linux-8fa223daba1963c34cc828075ce6773ff01fafe3.tar.xz
kernel-qcow2-util-linux-8fa223daba1963c34cc828075ce6773ff01fafe3.zip
choom: new command to adjust OOM-killer score value
Let's provide command line tool, man page with OOM description and bash-completion. It seems better than force end-users to use "echo" to /proc. Addresses: https://github.com/karelzak/util-linux/issues/609 Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion/choom29
1 files changed, 29 insertions, 0 deletions
diff --git a/bash-completion/choom b/bash-completion/choom
new file mode 100644
index 000000000..7e16df17a
--- /dev/null
+++ b/bash-completion/choom
@@ -0,0 +1,29 @@
+_choom_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-n'|'--adjust')
+ COMPREPLY=( $(compgen -W "{-1000..1000}" -- $cur) )
+ return 0
+ ;;
+ '-p'|'--pid')
+ local PIDS
+ PIDS=$(cd /proc && echo [0-9]*)
+ COMPREPLY=( $(compgen -W "$PIDS" -- $cur) )
+ return 0
+ ;;
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ OPTS="--adjust
+ --pid
+ --help
+ --version"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+}
+complete -F _choom_module choom