0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.141.25.100


Current Path : /snap/core/16928/usr/share/bash-completion/completions/
Upload File :
Current File : //snap/core/16928/usr/share/bash-completion/completions/xmllint

# bash completion for xmllint(1)                           -*- shell-script -*-

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

    case $prev in
        -o|--output)
            _filedir
            return 0
            ;;
        --path|--dtdvalidfpi|--maxmem|--encode|--pattern)
            # argument required but no completions available
            return 0
            ;;
        --dtdvalid)
            _filedir 'dtd?(.gz)'
            return 0
            ;;
        --relaxng)
            _filedir 'rng?(.gz)'
            return 0
            ;;
        --schema)
            _filedir 'xsd?(.gz)'
            return 0
            ;;
        --schematron)
            _filedir 'sch?(.gz)'
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
        COMPREPLY=( "${COMPREPLY[@]%:}" )
        return 0
    fi

    _filedir '@(*ml|htm|svg?(z)|xs[dl]|rng|wsdl|jnlp|tld)?(.gz)'
} &&
complete -F _xmllint xmllint

# ex: ts=4 sw=4 et filetype=sh