/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.0
contrib/apache2ctl
18 строк
394 B
Ville Skyttä
Do not make vi and friends expand tabs with spaces.
17 янв 2009, 12:38
17 янв 2009, 12:38
4a36023
Код
Авторство
О чём код?
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*- # ex: ts=8 sw=8 noet filetype=sh # # apache2ctl(1) completion # have apache2ctl && { _apache2ctl() { local APWORDS COMPREPLY=() cur=`_get_cword` APWORDS=$(apache2ctl 2>&1 >/dev/null | head -n1 | cut -f3 -d" " | tr "|" " ") COMPREPLY=( $( compgen -W "$APWORDS" -- "$cur" ) ) } complete -F _apache2ctl apache2ctl }