blob: 9ebbf7bab0fe0dbd20c41775bd20880d950ab143 (
plain) (
blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#compdef chown chgrp gchown=chown gchgrp=chgrp zf_chown=chown zf_chgrp=chgrp
local curcontext="$curcontext" state line expl ret=1 variant
local suf usr grp req deref pattern arg args aopts=( -A '-*' )
_pick_variant -r variant -b zsh gnu=Free\ Soft $OSTYPE --version
case "$variant" in
gnu)
aopts=()
args=(
'(-c --changes -v --verbose)'{-c,--changes}'[report each change made]'
'(-c --changes -v --verbose)'{-v,--verbose}'[output info for every file processed]'
'(-h --no-dereference)--dereference[dereference symlinks]'
'(-h --no-dereference --dereference)'{-h,--no-dereference}'[operate on symlinks themselves]'
'(-f --silent --quiet)'{-f,--silent,--quiet}"[don't report errors]"
'--preserve-root[fail to operate recursively on /]'
'--reference=[copy ownership of specified file]:file:_files'
'(-R --recursive)'{-R,--recursive}'[change files and directories recursively]'
'(-H -L -P)-L[follow all symlinks]'
'(-H -L -P)-H[follow symlinks on the command line]'
'(-H -L -P)-P[do not follow symlinks (default)]'
'(- : *)--help[display help information]'
'(- : *)--version[display version information]'
)
[[ $service = chown ]] &&
args+=( '--from=[restrict changes to files by current ownership]: :->owner' )
;;
*)
args=(
'-h[operate on symlinks themselves]'
'-R[change files and directories recursively]'
)
;|
zsh)
args+=(
'-s[enable paranoid behavior]'
)
;;
*)
args+=(
'(-H -L -P)-L[follow all symlinks]'
'(-H -L -P)-H[follow symlinks on the command line]'
'(-H -L -P)-P[do not follow symlinks (default)]'
)
;|
dragonfly*|freebsd*)
args+=(
"-x[don't traverse file systems]"
)
;|
darwin*|dragonfly*|freebsd*|netbsd*|solaris*)
args+=(
"-f[don't report errors]"
)
;|
darwin*|dragonfly*|freebsd*|netbsd*)
args+=(
'-v[output info for every file processed]'
)
;|
solaris2.<11->)
args+=(
'-s[owner and/or group are Windows SID strings]'
)
;;
esac
(( $+words[(r)--reference*] )) || args+=( '(--reference)1: :->owner' )
_arguments -C -s -S $aopts "$args[@]" '*: :->files' && ret=0
case $state in
owner)
if [[ $service = chgrp ]] || compset -P '*[:.]'; then
if (( EGID && $+commands[groups] && ! $+_comp_priv_prefix )); then # except for sudo
_wanted groups expl 'group' compadd -- $(groups) && return 0
fi
_groups && ret=0
else
if compset -S '[.:]*'; then
suf=()
elif [[ $OSTYPE = irix* ]]; then
suf=( -qS '.' )
else
suf=( -qS ':' )
fi
_users "$suf[@]" && ret=0
fi
;;
files)
(( $+opt_args[-h] || $+opt_args[--no-dereference] )) || deref="-"
if (( $+opt_args[--reference] )); then
zmodload -F zsh/stat b:zstat 2>/dev/null
usr=$(zstat +uid $opt_args[--reference])
grp=$(zstat +gid $opt_args[--reference])
_wanted files expl file _files -g "*($deref^u$usr,$deref^g$grp)" && ret=0
return ret
fi
if [[ $service = chgrp ]]; then
grp=${line[1]}
else
usr=${line[1]%%[.:]*}
usr=${${(M)usr:#[0-9]#}:-${userdirs[$usr]:+.$usr.}}
grp=${${(M)line[1]%%[.:]*}#?}
fi
[[ -n $grp ]] && grp="${${(M)grp:#[0-9]#}:-.$grp.}"
req=( ${usr:+\^u$usr} ${grp:+\^g$grp} )
(( EUID )) && req=( u$EUID$^req )
req=( $deref$^req )
req="*(${(j:,:)req})"
( : $~req ) 2> /dev/null || req='*'
_wanted files expl file _files -g "$req" && ret=0
;;
esac
return ret
|