/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4
completions/apache2ctl
16 строк
395 B
Ville Skyttä
apache2ctl, aspell, make: Don't hardcode completion generator command
04 июл 2016, 11:39
04 июл 2016, 11:39
3426649
Код
Авторство
О чём код?
# apache2ctl(1) completion -*- shell-script -*- _apache2ctl() { local cur prev words cword _init_completion || return local APWORDS APWORDS=$($1 2>&1 >/dev/null | awk 'NR<2 { print $3; exit }' | \ tr "|" " ") COMPREPLY=( $( compgen -W "$APWORDS" -- "$cur" ) ) } && complete -F _apache2ctl apache2ctl # ex: ts=4 sw=4 et filetype=sh