summaryrefslogtreecommitdiff
path: root/completions/chown
diff options
context:
space:
mode:
Diffstat (limited to 'completions/chown')
-rw-r--r--completions/chown14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/chown b/completions/chown
index 6bfa264a..1d746b7a 100644
--- a/completions/chown
+++ b/completions/chown
@@ -19,28 +19,28 @@ _chown()
$split && return
- if [[ "$cur" == -* ]]; then
+ if [[ $cur == -* ]]; then
# Complete -options
local w opts
- for w in "${words[@]}" ; do
- [[ "$w" == -@(R|-recursive) ]] && opts="-H -L -P" && break
+ for w in "${words[@]}"; do
+ [[ $w == -@(R|-recursive) ]] && opts="-H -L -P" && break
done
- COMPREPLY=( $(compgen -W '-c -h -f -R -v --changes --dereference
+ COMPREPLY=($(compgen -W '-c -h -f -R -v --changes --dereference
--no-dereference --from --silent --quiet --reference --recursive
- --verbose --help --version $opts' -- "$cur") )
+ --verbose --help --version $opts' -- "$cur"))
else
local args
# The first argument is an usergroup; the rest are filedir.
_count_args :
- if [[ $args -eq 1 ]]; then
+ if ((args == 1)); then
_usergroup -u
else
_filedir
fi
fi
} &&
-complete -F _chown chown
+ complete -F _chown chown
# ex: filetype=sh