- or download this
{
local @ARGV = ('file1', 'file2', ...);
...
...
}
}
- or download this
foreach $filename ('file1', 'file2', ...) {
local *RPT;
...
...
}
}
- or download this
sub read_log {
my ($filename, $analysis_ref) = @_;
...
my %analysis;
read_log($_, \%analysis)
foreach ('file1', 'file2', ...);