lemonldap-ng/modules/lemonldap-config/scripts/valid.pl
2007-02-27 10:50:36 +00:00

16 lines
254 B
Perl
Executable File

#!/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";
}