bash-completion/completions/xmllint

46 lines
1.1 KiB
Bash

# 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|dbk|docbook)?(.gz)'
} &&
complete -F _xmllint xmllint
# ex: ts=4 sw=4 et filetype=sh