403Webshell
Server IP : 104.21.84.107  /  Your IP : 104.23.197.208
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
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/ping4
# ping(8) completion                                       -*- shell-script -*-

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

    local ipvx

    case $prev in
        -*[cFGghilmPpstVWwz])
            return
            ;;
        -*I)
            _comp_compgen_available_interfaces -a
            return
            ;;
        -*M)
            # Path MTU strategy in Linux, mask|time in FreeBSD
            local opts="do want dont"
            [[ $OSTYPE == *bsd* ]] && opts="mask time"
            _comp_compgen -- -W '$opts'
            return
            ;;
        -*N)
            if [[ $cur != *= ]]; then
                _comp_compgen -- -W 'name ipv6 ipv6-global ipv6-sitelocal
                    ipv6-linklocal ipv6-all ipv4 ipv4-all subject-ipv6=
                    subject-ipv4= subject-name= subject-fqdn='
                [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
            fi
            return
            ;;
        -*Q)
            # TOS in Linux, "somewhat quiet" (no args) in FreeBSD
            if [[ $OSTYPE != *bsd* ]]; then
                _comp_compgen -- -W '{0..7}'
                return
            fi
            ;;
        -*S)
            # Socket sndbuf in Linux, source IP in FreeBSD
            [[ $OSTYPE == *bsd* ]] && _comp_compgen_ip_addresses
            return
            ;;
        -*T)
            # Timestamp option in Linux, TTL in FreeBSD
            [[ $OSTYPE == *bsd* ]] ||
                _comp_compgen -- -W 'tsonly tsandaddr'
            return
            ;;
        -*4*)
            ipvx=-4
            ;;
        -*6*)
            ipvx=-6
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_help || _comp_compgen_usage
        return
    fi

    [[ $1 == *6 ]] && ipvx=-6
    [[ $1 == *4 ]] && ipvx=-4
    _comp_compgen_known_hosts ${ipvx-} -- "$cur"
} &&
    complete -F _comp_cmd_ping ping ping4 ping6

# ex: filetype=sh

Youez - 2016 - github.com/yon3zu
LinuXploit