Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 399 Bytes

fast_xml-xsd_validation_on_cli.md

File metadata and controls

16 lines (10 loc) · 399 Bytes

Fast XML/XSD validation on the command line

Sometime you need to validate some XML fast.

xmllint is your friend :-)

$ xmllint --noout --schema my.xsd my.xml

--noout show just the errors, if you want your XML outputted, do not use --noout

References