Help for this page

Select Code to Download


  1. or download this
    while(<>){ 
        if (/^#+/){NEXT;}
    ...
        }
        }
        print "Fished establishing hashs.\n";
    
  2. or download this
    my %row;
    while(<>){ 
    ...
        my @data=split;
        $row{ @data[0,3,4] }=$data[5];
    }