blob: 2e55209c5a4340ed9f7955d39386c60339e1c949 (
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
|
#compdef chown chgrp
local suf usr grp req expl line
line=( "${(@)words[2,CURRENT-1]:#-*}" )
if [[ -prefix - ]]; then
_message 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 )
_wanted files expl file _files -g "*(${(j:,:)req})" && return 0
fi
|