2011-11-01 22:14:45 +02:00
|
|
|
# apache2ctl(1) completion -*- shell-script -*-
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2011-04-04 22:14:39 +03:00
|
|
|
_apache2ctl()
|
|
|
|
{
|
2011-04-20 14:18:27 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
2009-07-25 13:38:42 +03:00
|
|
|
|
2011-04-20 14:18:27 +03:00
|
|
|
local APWORDS
|
2009-12-21 23:00:31 +02:00
|
|
|
APWORDS=$(apache2ctl 2>&1 >/dev/null | awk 'NR<2 { print $3; exit }' | \
|
2009-10-04 19:42:50 +02:00
|
|
|
tr "|" " ")
|
2009-07-25 13:38:42 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=( $( compgen -W "$APWORDS" -- "$cur" ) )
|
2011-04-04 22:14:39 +03:00
|
|
|
} &&
|
2008-09-27 12:28:09 +02:00
|
|
|
complete -F _apache2ctl apache2ctl
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|