17 lines
403 B
Plaintext
Raw Normal View History

# apache2ctl(1) completion -*- shell-script -*-
2011-04-04 22:14:39 +03:00
_apache2ctl()
{
local cur prev words cword
_init_completion || return
local APWORDS
APWORDS=$(apache2ctl 2>&1 >/dev/null | awk 'NR<2 { print $3; exit }' | \
2009-10-04 19:42:50 +02:00
tr "|" " ")
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W "$APWORDS" -- "$cur" ) )
2011-04-04 22:14:39 +03:00
} &&
complete -F _apache2ctl apache2ctl
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh