mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 12:23:09 +00:00
Improve killall completions
- Remove UID resolution, since that can be slow. - Remove a `uname` call by storing the result - Stringify - Indent Fixes #3996.
This commit is contained in:
parent
09ce297352
commit
8814f34dc1
1 changed files with 40 additions and 48 deletions
|
@ -1,36 +1,29 @@
|
||||||
# For Solaris OS, we don't need to generate completions. Since it can hang the PC.
|
# For Solaris, `killall` kills all processes, so we really don't want to invoke it.
|
||||||
if test (uname) != 'SunOS'
|
set -l OS (uname)
|
||||||
|
if test "$OS" != 'SunOS'
|
||||||
__fish_make_completion_signals
|
__fish_make_completion_signals
|
||||||
|
|
||||||
for i in $__kill_signals
|
for i in $__kill_signals
|
||||||
set number (echo $i | cut -d " " -f 1)
|
set -l numname (string split " " -- $i)
|
||||||
set name (echo $i | cut -d " " -f 2)
|
set -l number $numname[1]
|
||||||
|
set -q numname[2]
|
||||||
|
and set -l name $numname[2]
|
||||||
complete -c killall -o $number -d $name
|
complete -c killall -o $number -d $name
|
||||||
complete -c killall -o $name
|
complete -c killall -o $name
|
||||||
# Doesn't work in OS X; -s is simulate
|
# Doesn't work in OS X; -s is simulate
|
||||||
test (uname) != 'Darwin'; and complete -c killall -s s -x -a "$number $name"
|
test "$OS" != 'Darwin'
|
||||||
end
|
and complete -c killall -s s -x -a "$number $name"
|
||||||
|
|
||||||
# Finds and completes all users, and their respective UID.
|
|
||||||
function __make_users_completions
|
|
||||||
set -l users (__fish_print_users)
|
|
||||||
for user in $users
|
|
||||||
set -l uid (id -u $user)
|
|
||||||
# GNU doesn't support UID
|
|
||||||
killall --version > /dev/null ^ /dev/null; and set -el uid
|
|
||||||
complete -c killall -s u -x -a "$user $uid" -d "Match only processes belonging to $user"
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
complete -c killall -xa '(__fish_complete_proc)'
|
complete -c killall -xa '(__fish_complete_proc)'
|
||||||
|
|
||||||
if killall --version > /dev/null ^ /dev/null
|
if killall --version >/dev/null ^/dev/null # GNU
|
||||||
complete -c killall -s e -l exact -d 'Require an exact match for very long names'
|
complete -c killall -s e -l exact -d 'Require an exact match for very long names'
|
||||||
complete -c killall -s I -l ignore-case -d 'Do case insensitive process name match'
|
complete -c killall -s I -l ignore-case -d 'Do case insensitive process name match'
|
||||||
complete -c killall -s g -l process-group -d 'Kill the process group to which the process belongs. The kill signal is only sent once per group, even if multiple processes belonging to the same process group were found'
|
complete -c killall -s g -l process-group -d 'Kill the process group to which the process belongs. The kill signal is only sent once per group, even if multiple processes belonging to the same process group were found'
|
||||||
complete -c killall -s i -l interactive -d 'Interactively ask for confirmation before killing'
|
complete -c killall -s i -l interactive -d 'Interactively ask for confirmation before killing'
|
||||||
complete -c killall -s u -l user -d 'Kill only processes the specified user owns. Command names are optional' -x
|
complete -c killall -s u -l user -d 'Kill only processes the specified user owns. Command names are optional' -x
|
||||||
__make_users_completions
|
complete -c killall -s -u -l user -x -a "(__fish_complete_users)"
|
||||||
complete -c killall -s w -l wait -d 'Wait for all killed processes to die. killall checks once per second if any of the killed processes still exist and only returns if none are left. Note that killall may wait forever if the signal was ignored, had no effect, or if the process stays in zombie state'
|
complete -c killall -s w -l wait -d 'Wait for all killed processes to die. killall checks once per second if any of the killed processes still exist and only returns if none are left. Note that killall may wait forever if the signal was ignored, had no effect, or if the process stays in zombie state'
|
||||||
complete -c killall -s v -l version -d 'Print version'
|
complete -c killall -s v -l version -d 'Print version'
|
||||||
else
|
else
|
||||||
|
@ -40,10 +33,9 @@ if test (uname) != 'SunOS'
|
||||||
complete -c killall -s l -d 'List names of available signals and exit'
|
complete -c killall -s l -d 'List names of available signals and exit'
|
||||||
complete -c killall -s m -d 'Case sensitive argument match for processed'
|
complete -c killall -s m -d 'Case sensitive argument match for processed'
|
||||||
complete -c killall -s s -d 'Simulate, but do not send any signals'
|
complete -c killall -s s -d 'Simulate, but do not send any signals'
|
||||||
complete -c killall -s d -d 'Print detailed info. Doesn\'t send signals'
|
complete -c killall -s d -d "Print detailed info. Doesn't send signals"
|
||||||
complete -c killall -s u -x -d 'Only processes for USER'
|
complete -c killall -s u -x -d 'Only processes for USER'
|
||||||
# Completions for users
|
complete -c killall -s -u -l user -x -a "(__fish_complete_users)"
|
||||||
__make_users_completions
|
|
||||||
complete -c killall -s t -d 'Limit to processes running on specified TTY'
|
complete -c killall -s t -d 'Limit to processes running on specified TTY'
|
||||||
complete -c killall -s t -xa "(ps a -o tty | sed 1d | uniq)"
|
complete -c killall -s t -xa "(ps a -o tty | sed 1d | uniq)"
|
||||||
complete -c killall -s c -x -d 'Limit to processes matching specified PROCNAME'
|
complete -c killall -s c -x -d 'Limit to processes matching specified PROCNAME'
|
||||||
|
|
Loading…
Reference in a new issue