mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
37 lines
784 B
Bash
37 lines
784 B
Bash
# killall(1) completion -*- shell-script -*-
|
|
|
|
[[ $OSTYPE == *@(linux|freebsd|darwin)* ]] || return 1
|
|
|
|
_killall()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
--context | --older-than | --younger-than | --version | -!(-*)@([Zoy]|V*))
|
|
return
|
|
;;
|
|
--signal | -!(-*)s)
|
|
_signals
|
|
return
|
|
;;
|
|
--user | -!(-*)u)
|
|
_allowed_users
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
((cword == 1)) && _signals -
|
|
return
|
|
fi
|
|
|
|
_pnames
|
|
} &&
|
|
complete -F _killall killall
|
|
|
|
# ex: filetype=sh
|