Help for this page

Select Code to Download


  1. or download this
    my @files = qw( A.csv B.csv C.csv D.csv E.csv );
    
  2. or download this
     open( OUTPUT, $files[0] ) or die... 
     while( <DISTLISTS> ) {
    ...
      print OUTPUT, $dist_split;
     }
     close OUTPUT;