- or download this
while (<$fh_log>) {
my ($month, $user) = /^LOGGING: \S+?-(\S+) \S+: STARTING FLUSH: (\S
++)$/
...
$flushes{$month}{$user}++;
$flushes{$month}{TOTAL}++;
}
- or download this
my %flushes = (
...
'TOTAL' => 8,
},
);
- or download this
for my $month ( keys %flushes ) {
print $month . "\n";
...
}
print "\n";
}
- or download this
for my $month ( keys %flushes ) {
print $month . "\n";
...
}
print "\n";
}