Help for this page

Select Code to Download


  1. or download this
    my %proc_data = (
        ID1 => [qw{location1 filename1}],
        ID2 => [qw{location2 filename2}],
        ...
    );
    
  2. or download this
    for my $id (keys %proc_data) {
        my $location = $proc_data{$id}[0];
        my $filename = $proc_data{$id}[1];
        # file processing code here
    }
    
  3. or download this
    use strict;
    use warnings;
    
  4. or download this
    use diagnostics;