/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.7
completions/cowsay
23 строки
549 B
Ville Skyttä
*: Move indentation settings to .editorconfig
24 авг 2016, 14:33
24 авг 2016, 14:33
619fb1f
Код
Авторство
О чём код?
# bash completion for cowsay -*- shell-script -*- _cowsay() { local cur prev words cword _init_completion || return case $prev in -f) COMPREPLY=( $( compgen -W \ '$( cowsay -l 2>/dev/null | tail -n +2 )' -- "$cur" ) ) return ;; esac # relevant options completion 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: filetype=sh