1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Bash completion for the qcd() function _qcd () { local cur local commands=( shortcut ) COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} COMPREPLY=( $( compgen -W "${commands[*]}" -- $cur ) ) return 0 } complete -F _qcd qcd