lemonldap-ng/modules/lemonldap-config/scripts/valid.pl

16 lines
254 B
Perl
Raw Normal View History

2007-02-27 11:50:36 +01:00
#!/usr/bin/perl -w
use strict;
use XML::Simple;
my $file = shift;
my $test;
eval {
$test = XMLin( $file,
);
} ;
if ($@) { print "ERREUR SUR $file\n";
} else {
print "$file:Correct\n";
}