From d239699bd1163d2ff6459dd79e2fcb276747e131 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 27 Oct 2019 02:52:43 +0300 Subject: [PATCH] .bash_completion: Add completion for `cgmem_nice` --- .bash_completion.d/cgmem_nice | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .bash_completion.d/cgmem_nice diff --git a/.bash_completion.d/cgmem_nice b/.bash_completion.d/cgmem_nice new file mode 100644 index 0000000..0b95294 --- /dev/null +++ b/.bash_completion.d/cgmem_nice @@ -0,0 +1,12 @@ +_cgmem_nice() +{ + local CUR=${COMP_WORDS[COMP_CWORD]} + + if [ $COMP_CWORD -eq 1 ]; then + COMPREPLY=( $(compgen -W "100 200 300 500 1000 2000 4000" -- $CUR) ) + elif [ $COMP_CWORD -ge 2 ]; then + _command_offset 2 + fi +} + +complete -F _cgmem_nice cgmem_nice -- 2.39.2