# bash completion for cowsay -*- shell-script -*- proc _cowsay { var cur = '', prev = '', words = '', cword = '' _init_completion || return match $prev { with -f setglobal COMPREPLY = '( '$( compgen -W \ '$( cowsay -l 2>/dev/null | tail -n +2 )' -- "$cur" ) ) return 0 } # relevant options completion setglobal COMPREPLY = '( '$( compgen -W '-b -d -g -p -s -t -w -y -e -f -h -l -n -T -W' \ -- "$cur" ) ) } && complete -F _cowsay -o default cowsay cowthink # ex: ts=4 sw=4 et filetype=sh