HEX
Server: Apache
System: Linux opal14.opalstack.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User: curbgloabal_opal (1234)
PHP: 8.1.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //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