Help for this page

Select Code to Download


  1. or download this
      #  Delete (something) from the input stream, separate the
      #  count from the file name.
    
      s/$in_prefix//;
      my ( $count, $file ) = split;
    
  2. or download this
      #  Decompose directory/sub-directory/file into campaign,
      #  month and file.
    
      my ( $campaign, $month, $fname ) = split ( '/', $file );
    
  3. or download this
    #  Build an array of hash references from the output from
    #  the output wc -l command containing campaign, month and
    #  count data.
    
    my @files = map {