Cross Reference: xmllint.sh
xref
: /
ec
/
ECSpooler
/
backends
/
xml
/
xmllint.sh
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#! /
bin
/
sh
INTERPRETER
=
$(
which
xmllint
)
trap
'kill $! && trap - TERM && kill $$'
TERM
# By default, xmllint will output the resulting tree. We are not interested in it, so we specify
# --noout (cf. `man xmllint`)
$INTERPRETER
--
noout
"$@"
&
wait
%%