switch day diff calculation to epoch based so that "N hours short of M days" becomes...
[engit/Iron-Munger.git] / scripts / munge
CommitLineData
aa75d10b 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5use IronMunger;
6use File::Path qw(rmtree);
7use File::Copy::Recursive qw(dircopy);
8
9rmtree('output');
10dircopy('share','output');
11
12my $munger = IronMunger->load_from_plagger('csv');
13
14print $munger->debug_dump;
15
16$munger->save_monger_stats('output');