zsh-workers
 help / color / mirror / code / Atom feed
0b760270b857aa9ae6265e6e84b54c8495ebb1c9 blob 812 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
 
#compdef pidof

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

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]' \
  "(-x $exargs)"-x'[include shells running named scripts]' \
  "($exargs)"\*{-o+,--omit-pid}'[omit processes with PIDs]:pids:_pids' \
  '*:process:->procnames' \
  && return 0

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

return ret
debug log:

solving 0b76027 ...
found 0b76027 in https://inbox.vuxu.org/zsh-workers/57514BF6.6080307@redhat.com/

applying [1/1] https://inbox.vuxu.org/zsh-workers/57514BF6.6080307@redhat.com/
diff --git a/Completion/Linux/Command/_pidof b/Completion/Linux/Command/_pidof
new file mode 100644
index 0000000..0b76027

Checking patch Completion/Linux/Command/_pidof...
Applied patch Completion/Linux/Command/_pidof cleanly.

index at:
100644 0b760270b857aa9ae6265e6e84b54c8495ebb1c9	Completion/Linux/Command/_pidof

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).