about summary refs log tree commit diff
path: root/Completion/Linux/Command/_pidof
blob: 151a0e0f6decc6224b8a88421cc2a04e45ee6072 (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
#compdef pidof

local curcontext="$curcontext" state line expl ret=1
typeset -A opt_args

_pick_variant -r variant procps='--separator' $OSTYPE -h

case $variant in
  (procps)
    local exargs="-h --help -V --version"
    _arguments -C -s -w \
      '(- *)'{-h,--help}'[display help information]' \
      '(- *)'{-V,--version}'[print program version]' \
      "(-s --single-shot $exargs)"{-s,--single-shot}'[return one PID only]' \
      "(-c --check-root $exargs)"{-c,--check-root}'[omit processes with different root]' \
      '-q[quiet mode, only set the exit code]' \
      '(-w --with-workers)'{-w,--with-workers}'[show kernel workers too]' \
      "(-x $exargs)"-x'[include shells running named scripts]' \
      "($exargs)"\*{-o+,--omit-pid=}'[omit processes with PIDs]:pids:_sequence -s , _pids' \
      '(-S --separator)'{-S+,--separator=}'[specify separator put between PIDs]:separator' \
      '*:process:->procnames' \
      && return 0
    ;;
  (darwin*)
    # Night Production pidof
    _arguments -s -w \
      '(- *)'{-h,-\?}'[display help information]' \
      '(- *)-v[print out version info on pidof]' \
      '-l[print output in long format]' \
      '-k[kill processes by name]' \
      '*:process:_process_names -a' \
      && return 0
    ;;
  (*)
    # sysvinit-utils
    _arguments -C -s -w \
      '(- *)-h[display help information]' \
      '-c[return PIDs with the same root directory]' \
      '-d[use the provided character as output separator]:separator' \
      '-n[avoid using stat system function on network shares]' \
      '-o[omit results with a given PID]:pid:_sequence -s , _pids' \
      '-s[return one PID only]' \
      '-q[quiet mode. Do not display output]' \
      '-s[only return one PID]' \
      '-x[return PIDs of shells running scripts with a matching name]' \
      '-z[list zombie and I/O waiting processes. May cause pidof to hang]' \
      '*:process:->procnames' \
      && return 0
    ;;
esac

case $state in
  procnames)
    # Handle defunct processes and "avahi-daemon:"
    _wanted process-names expl process compadd ${${${${${(@)${(f)"$(ps -N --ppid 2 -p 2 o args=)"}%% *}##*/}%:}#\[}%]} && ret=0
  ;;
esac

return ret