summaryrefslogtreecommitdiff
path: root/completions/chown
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
commitcc81eb120ad1a456f030f7b828697013a9b2b66a (patch)
treebb61702f98b407b2f7987faa846190fb3f002e55 /completions/chown
parent8394526300cc384e53c470303aeb8b4fdcaf84a3 (diff)
parent95623d39d6029ba78ec96ad5ea08e9ac12629b91 (diff)
downloadbash-completion-cc81eb120ad1a456f030f7b828697013a9b2b66a.tar.gz
Update upstream source from tag 'upstream/2.11'
Update to upstream version '2.11' with Debian dir 932c2c1a6192441f3cd8897e72d737f2f0277f60
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