From 8fa223daba1963c34cc828075ce6773ff01fafe3 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 16 Apr 2018 12:53:39 +0200 Subject: 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 --- bash-completion/choom | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 bash-completion/choom (limited to 'bash-completion') 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 -- cgit v1.2.3-55-g7522