Files
fsfe-website/tools/validate.pl
reinhard bb550ca6cb Fixed validate.pl.
svn path=/trunk/; revision=5393
2005-05-18 14:11:10 +00:00

14 lines
321 B
Perl

#! /usr/bin/perl
#
# This is a simple wrapper to XML::LibXML. It will validate (more or less)
# an XML file. Use this before committing something to CVS to make sure that
# the file is at least parseable as XML.
#
use XML::LibXML;
my $parser = XML::LibXML->new;
foreach (@ARGV) {
my $doc = $parser->parse_file($_);
}