aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_proc.fish
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-16 14:11:43 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-16 14:11:43 -0800
commit6416cb45fb054cd68b68de03a0e8da059fbff17a (patch)
treeeea069bd6e6926e971c0e107497479056e02410b /share/functions/__fish_complete_proc.fish
parent1db7c6233b82a2daf162df8a08786bc985c40eea (diff)
Fix proc and pid completion on OS X, and improve it on Linux.
Diffstat (limited to 'share/functions/__fish_complete_proc.fish')
-rw-r--r--share/functions/__fish_complete_proc.fish47
1 files changed, 45 insertions, 2 deletions
diff --git a/share/functions/__fish_complete_proc.fish b/share/functions/__fish_complete_proc.fish
index d1c2bcff..d520a030 100644
--- a/share/functions/__fish_complete_proc.fish
+++ b/share/functions/__fish_complete_proc.fish
@@ -1,4 +1,47 @@
function __fish_complete_proc --description 'Complete by list of running processes'
- ps -A --no-headers --format comm | sort -u
-
+ # Our function runs ps, followed by a massive list of commands passed to sed
+ set -l ps_cmd
+ set -l sed_cmds
+ if test (uname) = Linux
+ # comm and ucomm return a truncated name, so parse it from the command line field,
+ # which means we have to trim off the arguments.
+ # Unfortunately, it doesn't seem to escape spaces - so we can't distinguish
+ # between the command name, and the first argument. Still, processes with spaces
+ # in the name seem more common on OS X than on Linux, so prefer to parse out the
+ # command line rather than using the stat data.
+ # If the command line is unavailable, you get the stat data in brackets - so
+ # parse out brackets too.
+ set ps_cmd 'ps -A -o command'
+
+ # Erase everything after the first space
+ set sed_cmds $sed_cmds 's/ .*//'
+
+ # Erases weird stuff Linux gives like kworker/0:0
+ set sed_cmds $sed_cmds 's|/[0-9]:[0-9]]$||g'
+
+ # Retain the last path component only
+ set sed_cmds $sed_cmds 's|.*/||g'
+
+ # Strip off square brackets. Cute, huh?
+ set sed_cmds $sed_cmds 's/[][]//g'
+
+ # Erase things that are just numbers
+ set sed_cmds $sed_cmds 's/^[0-9]*$//'
+ else
+ # OS X, BSD. Preserve leading spaces.
+ set ps_cmd 'ps axc -o comm'
+
+ # Delete parenthesized (zombie) processes
+ set sed_cmds $sed_cmds '/(.*)/d'
+ end
+
+ # Append sed command to delete first line (the header)
+ set sed_cmds $sed_cmds '1d'
+
+ # Append sed commands to delete leading dashes and trailing spaces
+ # In principle, commands may have trailing spaces, but ps emits space padding on OS X
+ set sed_cmds $sed_cmds 's/^-//' 's/ *$//'
+
+ # Run ps, pipe it through our massive set of sed commands, then sort and unique
+ eval $ps_cmd | sed '-e '$sed_cmds | sort -u
end