D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /var/www/html/hpsc/staff/../../../../../lib/os-probes/../../share/git-core/../bash-completion/completions/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

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