2008-09-27 12:28:09 +02:00
|
|
|
# apache2ctl(1) completion
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2008-09-27 12:28:09 +02:00
|
|
|
have apache2ctl && {
|
|
|
|
_apache2ctl() {
|
2009-10-04 19:42:50 +02:00
|
|
|
local APWORDS
|
2009-07-25 13:38:42 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
2009-07-25 13:38:42 +03:00
|
|
|
|
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" ) )
|
2008-09-27 12:28:09 +02:00
|
|
|
}
|
|
|
|
complete -F _apache2ctl apache2ctl
|
|
|
|
}
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|