mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
36 lines
774 B
Bash
36 lines
774 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 -eq 1 ]] && _signals -
|
|
return
|
|
fi
|
|
|
|
_pnames
|
|
} &&
|
|
complete -F _killall killall
|
|
|
|
# ex: filetype=sh
|