Just to be sure nothing will be displayed...

This commit is contained in:
David Paleino 2008-09-14 12:33:50 +02:00
parent 30c0c572ef
commit 946834a57b

View File

@ -9659,7 +9659,8 @@ _apache2ctl() {
COMPREPLY=()
cur=`_get_cword`
APWORDS=$(apache2ctl 2>&1 | head -n1 | cut -f3 -d" " | tr "|" " ")
APWORDS=$(apache2ctl 2>&1 >/dev/null | head -n1 | cut -f3 -d" " |\
tr "|" " ")
COMPREPLY=( $( compgen -W "$APWORDS" -- "$cur" ) )
}