_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