D7net Mini Sh3LL v1
Current File : /var/www/html/hpsc/staff/../../../../../lib/os-probes/../../share/git-core/../bash-completion/completions/kill |
# kill(1) completion -*- shell-script -*-
_kill()
{
local cur prev words cword
_init_completion || return
case $prev in
-s)
_signals
return
;;
-l)
return
;;
esac
if [[ $cword -eq 1 && "$cur" == -* ]]; then
# return list of available signals
_signals -
COMPREPLY+=( $(compgen -W "-s -l" -- "$cur") )
else
# return list of available PIDs
_pids
fi
} &&
complete -F _kill kill
# ex: filetype=sh
AnonSec - 2021 | Recode By D7net