2011-11-01 22:14:45 +02:00
|
|
|
# postconf(1) completion -*- shell-script -*-
|
2011-10-12 23:01:10 +03:00
|
|
|
|
|
|
|
_postconf()
|
|
|
|
{
|
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
|
|
|
local eqext
|
|
|
|
|
|
|
|
case $prev in
|
|
|
|
-b|-t)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-c)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-e)
|
|
|
|
cur=${cur#[\"\']}
|
|
|
|
eqext='='
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ $cur == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2013-04-09 10:48:26 +02:00
|
|
|
COMPREPLY=( $( compgen -W "$( /usr/sbin/postconf | awk '{print $1}' )" -- "$cur" ) )
|
|
|
|
|
2011-10-12 23:01:10 +03:00
|
|
|
return 0
|
|
|
|
} &&
|
|
|
|
complete -F _postconf postconf
|
|
|
|
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|