1
0
Fork 0

Make the script a little more general purpose usable by removing a hardcoded filename.

This commit is contained in:
Durk Talsma 2011-01-03 13:58:12 +01:00
parent 6c165c30f2
commit c6feba04c9

View file

@ -1,17 +1,25 @@
#!/usr/bin/perl -w
use strict;
use warnings;
#use strict;
#use warnings;
# DEBUG
# use Data::Dumper;
# print Dumper($data) . "\n";
# END
if (scalar (@ARGV) == 1) {
@files = glob("$ARGV[0]");
print "Processing : ", @files, "\n";
} else {
die "Usage : conf2xml.pl <inputfile> [ > outputfile ]\n";
}
$file = shift(@files);
use Switch;
use XML::LibXML;
my $parser = XML::LibXML->new();
my $doc = $parser->load_xml(location => './CEB.xml');
my $doc = $parser->load_xml(location => $file);
my $data;
# reformatting days