Help for this page

Select Code to Download


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