2006-02-12 21:14:21 +08:00
|
|
|
function __fish_complete_pids -d "Print a list of process identifiers along with brief descriptions"
|
|
|
|
# This may be a bit slower, but it's nice - having the tty displayed is really handy
|
2013-01-17 06:11:43 +08:00
|
|
|
# 'tail -n +2' deletes the first line, which contains the headers
|
|
|
|
# 'grep -v...' removes self from the output
|
|
|
|
set -l SELF %self
|
|
|
|
|
|
|
|
# Display the tty if available
|
|
|
|
# But not if it's just question marks, meaning no tty
|
2015-09-29 02:06:20 +08:00
|
|
|
ps axc -o pid,ucomm,tty | grep -v '^\s*'$SELF'\s' | tail -n +2 | string replace -r ' *([0-9]+) +([^ ].*[^ ]|[^ ]) +([^ ]+) *$' '$1\t$2 [$3]' | string replace -r ' *\[\?*\] *$' ''
|
2006-02-12 21:14:21 +08:00
|
|
|
end
|
|
|
|
|