Help for this page

Select Code to Download


  1. or download this
    foreach (@in) {
      my ($count, $file) = split;
    ...
             count => $count,
             sort => "$campaign:$month:$file" };
    }
    
  2. or download this
    my @files = map {
      my ($count, $file) = split;
    ...
        count => $count,
        sort => "$campaign:$month:$file" };
    } @in;