Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > ae56453a424c3075a57cb525fab74116 > files > 19

opensc-0.20.0-1.mga7.armv7hl.rpm

# this was auto-generated by OpenSC/doc/tools/Makefile.am
_pkcs15_tool()
{
    COMPREPLY=()
    local cur prev split=false
    _get_comp_words_by_ref cur prev

    _split_longopt && split=true

    opts="		--aid --auth-id --change-pin --clear-cache --dump --list-applications --list-certificates --list-data-objects --list-info --list-keys --list-pins --list-public-keys --list-secret-keys --new-pin --no-cache --output --pin --puk --raw --read-certificate --read-data-object --read-public-key --read-ssh-key --reader --rfc4716 --short --test-session-pin --test-update --unblock-pin --update --use-pinpad --verbose --verify-pin --version --wait -C -D -R -T -U -a -c -k -o -s -u -v -w "

    if [ ${COMP_CWORD} -eq 1 ]; then
        COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
        return 0
    fi

    case "${prev}" in
        		!*)
            _filedir so
            return 0
            ;;
        		--output|-o)
            _filedir
            return 0
            ;;
        		--aid|--auth-id|--new-pin|--output|--pin|--puk|--read-certificate|--read-data-object|--read-public-key|--read-ssh-key|--reader|-R|-a|-o)
            return 0
            ;;
        *)
            COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
            return 0
            ;;
    esac

    $split && return 0

    if [[ "$cur" == -* ]]; then
        _longopt $1
        return
    fi

    _filedir
}
complete -F _pkcs15_tool pkcs15-tool


# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh