summaryrefslogtreecommitdiff
path: root/completions/postconf
diff options
context:
space:
mode:
Diffstat (limited to 'completions/postconf')
-rw-r--r--completions/postconf10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/postconf b/completions/postconf
index 45b376be..4cb324c1 100644
--- a/completions/postconf
+++ b/completions/postconf
@@ -8,7 +8,7 @@ _postconf()
local eqext
case $prev in
- -b|-t)
+ -b | -t)
_filedir
return
;;
@@ -23,17 +23,17 @@ _postconf()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
return
fi
local len=${#cur} pval
for pval in $(/usr/sbin/postconf 2>/dev/null | cut -d ' ' -f 1); do
- if [[ "$cur" == "${pval:0:$len}" ]]; then
- COMPREPLY+=( "$pval$eqext" )
+ if [[ $cur == "${pval:0:len}" ]]; then
+ COMPREPLY+=("$pval${eqext-}")
fi
done
} &&
-complete -F _postconf postconf
+ complete -F _postconf postconf
# ex: filetype=sh