summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-09-29 09:18:36 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-09-29 09:18:36 +0200
commit8f21009ce9f85e189ccbe83298ad67969aa43d72 (patch)
treee33b67b6f8cc777d31895270a85e6ad59c02a873 /etc
parent5e3318cb55058880f21495ce7bce65434d23abd4 (diff)
Added pkill completion
Diffstat (limited to 'etc')
-rw-r--r--etc/completions/_pkill47
1 files changed, 47 insertions, 0 deletions
diff --git a/etc/completions/_pkill b/etc/completions/_pkill
new file mode 100644
index 0000000..ec6cb06
--- /dev/null
+++ b/etc/completions/_pkill
@@ -0,0 +1,47 @@
+#compdef pkill pgrep
+## completion for pkill
+## Written 2008 by Daniel Friesel <derf@derf.homelinux.org>
+
+## Not finished
+## * The process completion needs some rework (what about sudo?)
+## * Some options lack completion / their completion is inspecific
+
+typeset -a arguments
+typeset expl
+
+arguments=(
+ '-c[count matching processes]'
+ '-f[match pattern against full commandline]'
+ '-g[match processes in the listed group IDs]:process group ID'
+ '-G[match processes with this GID]:group:_groups'
+ '-n[select newest matching process]'
+ '-o[select oldest matching process]'
+ '-P[select processes with this parent PID]:process ID:_pids'
+ '-s[select processes with this session ID]:session ID'
+ '-t[select processes with this controlling terminal]:terminal:_terminal'
+ '-u[select processes owned by effective user]:user:_users'
+ '-U[select processes owned by real user]:user:_users'
+ '-v[negate the matching]'
+ '-x[exact matches]'
+ ':pattern:_named_process'
+)
+
+if [[ $service == 'pgrep' ]] {
+ arguments+='-d[set output delimiter]:delimiter'
+ arguments+='-l[list process name]'
+}
+
+function _terminal {
+ _path_files -W /dev
+}
+
+function _named_process {
+ typeset -a pgrep_user
+ if (( EUID )) {
+ pgrep_user=(-u $EUID)
+ }
+ _wanted pattern expl 'pattern or process name' \
+ compadd $(pgrep $pgrep_user -l '' | cut -d ' ' -f 2)
+}
+
+_arguments -s $arguments