23 lines
465 B
Plaintext
Raw Normal View History

# apache2ctl(1) completion
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
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh