blob: 1d746b7a26f7195c2dab96f6b055d1a9f36f6851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# chown(1) completion -*- shell-script -*-
_chown()
{
local cur prev words cword split
# Don't treat user:group as separate words.
_init_completion -s -n : || return
case "$prev" in
--from)
_usergroup
return
;;
--reference)
_filedir
return
;;
esac
$split && return
if [[ $cur == -* ]]; then
# Complete -options
local w opts
for w in "${words[@]}"; do
[[ $w == -@(R|-recursive) ]] && opts="-H -L -P" && break
done
COMPREPLY=($(compgen -W '-c -h -f -R -v --changes --dereference
--no-dereference --from --silent --quiet --reference --recursive
--verbose --help --version $opts' -- "$cur"))
else
local args
# The first argument is an usergroup; the rest are filedir.
_count_args :
if ((args == 1)); then
_usergroup -u
else
_filedir
fi
fi
} &&
complete -F _chown chown
# ex: filetype=sh
|