blob: e194677d2795fbc2fc4cb14947ff7e5d3fca7db8 (
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
|
#compdef chown chgrp
local suf usr grp req line
line=( "${(@)words[2,CURRENT-1]:#-*}" )
if [[ -prefix - ]]; then
_message -e options option
elif [[ $#line -eq 0 ]]; then
if [[ $service = chgrp ]] || compset -P '*[:.]'; then
if (( EGID && $+commands[groups] )); then # except for root
_wanted groups expl 'group' compadd $(groups) && return 0
fi
_groups && return 0
else
if [[ $OSTYPE = (solaris*|hpux*|*bsd*) ]]; then
suf=':'
else
suf='.'
fi
compset -S '.*' && unset suf
_users -S "$suf" -q && return 0
fi
else
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=( -$^req )
req="*(${(j:,:)req})"
( : $~req ) 2> /dev/null || req='*'
_files -g "$req" && return 0
fi
|