cdd2c3d71d
This reverts commit 580a4cf6e55ab1afd6b1f8f7efc54436e7046e44.
42 lines
882 B
Bash
42 lines
882 B
Bash
# postconf(1) completion -*- shell-script -*-
|
|
|
|
_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
|
|
|
|
local len=${#cur} idx=0 pval
|
|
for pval in $( /usr/sbin/postconf 2>/dev/null | cut -d ' ' -f 1 ); do
|
|
if [[ "$cur" == "${pval:0:$len}" ]]; then
|
|
COMPREPLY[$idx]="$pval$eqext"
|
|
idx=$(($idx+1))
|
|
fi
|
|
done
|
|
return 0
|
|
} &&
|
|
complete -F _postconf postconf
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|