From: Oleg Broytman Date: Sat, 26 Oct 2019 23:52:43 +0000 (+0300) Subject: .bash_completion: Add completion for `cgmem_nice` X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=d239699bd1163d2ff6459dd79e2fcb276747e131 .bash_completion: Add completion for `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