NNML
view release on metacpan or search on metacpan
my $conf = $Config->base . "/NNML.conf";
my $date = $Config->base . "/NNML.date";
GetOptions(\%OPT,
'nono!'
) or die "Usage: $0 ...\n";
my $cf = new IO::File "<$conf";
die "Could not read '$conf': $!\n" unless $cf;
$/ = ''; # read paragraph mode
my %date = read_dates($date);
my %new_date; # we append anyway
my %key; # pid -> from;to
my %start; # pid -> start time
$SIG{CHLD} = sub {
my $pid = wait;
my $status = $? >> 8;
print "Child $pid terminated with status $status\n";
( run in 1.478 second using v1.01-cache-2.11-cpan-49f99fa48dc )