projects
/
engit/Iron-Munger.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
120c9a595718535b2173043f768cd696531367e5
[engit/Iron-Munger.git]
/
scripts
/
munge
1
#!/usr/bin/env perl
2
3
use strict;
4
use warnings;
5
use IronMunger;
6
use File::Path qw(rmtree);
7
use File::Copy::Recursive qw(dircopy);
8
9
rmtree('output');
10
dircopy('share','output');
11
12
my $munger = IronMunger->load_from_plagger('csv');
13
14
print $munger->debug_dump;
15
16
$munger->save_monger_stats('output');