summaryrefslogtreecommitdiff
path: root/completions/postmap
diff options
context:
space:
mode:
Diffstat (limited to 'completions/postmap')
-rw-r--r--completions/postmap16
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/postmap b/completions/postmap
index 66756c1e..35c4ada1 100644
--- a/completions/postmap
+++ b/completions/postmap
@@ -16,26 +16,26 @@ _postmap()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
return
fi
- if [[ "$cur" == *:* ]]; then
+ if [[ $cur == *:* ]]; then
compopt -o filenames
- COMPREPLY=( $(compgen -f -- "${cur#*:}") )
+ COMPREPLY=($(compgen -f -- "${cur#*:}"))
else
local len=${#cur} pval
for pval in $(/usr/sbin/postconf -m 2>/dev/null); do
- if [[ "$cur" == "${pval:0:$len}" ]]; then
- COMPREPLY+=( "$pval:" )
+ if [[ $cur == "${pval:0:len}" ]]; then
+ COMPREPLY+=("$pval:")
fi
done
- if [[ ! $COMPREPLY ]]; then
+ if [[ ! ${COMPREPLY-} ]]; then
compopt -o filenames
- COMPREPLY=( $(compgen -f -- "$cur") )
+ COMPREPLY=($(compgen -f -- "$cur"))
fi
fi
} &&
-complete -F _postmap postmap postalias
+ complete -F _postmap postmap postalias
# ex: filetype=sh