zsh-workers
 help / color / mirror / code / Atom feed
95580ba760692c338dc1bcd373e27d9132fd7b32 blob 1783 bytes (raw)

 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
 
#compdef id gid

local args choices

if _pick_variant gnu=GNU $OSTYPE --version; then
  choices='--help --version -Z --context -g --group -G --groups -u --user'
  _arguments \
    "($choices)"{-Z,--context}'[print only security context]' \
    "($choices)"{-g,--group}'[print only EGID]' \
    "($choices -r --real)"{-G,--groups}'[print all GIDs]' \
    '(-n --name --help --version)'{-n,--name}'[show name instead of number]' \
    '(-r --real -g --groups --help --version)'{-r,--real}'[show real ID instead of effective]' \
    "($choices)"{-u,--user}'[print only EUID]' \
    '(-z --zero --help --version)'{-z,--zero}'[delimit entries with NUL characters]' \
    '(- :)--help[display help information]' \
    '(- :)--version[display version]' \
    ':user:_users'
else
  choices="-A -a -c -G -g -M -p -P -R -u"
  args=(
    "($choices)-g[print only EGID]"
    "($choices -r)-G[print all GIDs]"
    "($choices)-u[print only EUID]"
    '(-A -c -M -P)-n[show name instead of number]'
    '(-A -c -M -P)-r[show real ID instead of effective]'
  )
  case $OSTYPE in
    solaris*)
      args+=(
        '(-g -G -u -n -r)-a[show user name, user ID and all the groups]'
	'(-g -G -u -n -r)-p[show project membership]'
      )
    ;;
    openbsd*)
      args+=( '(-)-R[display the routing table of the current process]' )
    ;;
    darwin*|dragonfly*|freebsd*)
      args+=( '(-)-P[print id in the form of a password file entry]' )
    ;|
    darwin*|freebsd*)
      args+=(
	'(-)-A[print process audit user ID]'
	'(-)-M[print MAC label of the current process]'
      )
    ;|
    freebsd*) args+=( '(-)-c[print current login class]' ) ;|
    darwin*|dragonfly*|freebsd*|netbsd*|openbsd*)
      args+=( '(-)-p[human readable output]' )
    ;;
  esac
  _arguments -s $args ':user:_users'
fi
debug log:

solving 95580ba76 ...
found 95580ba76 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).