Help for this page

Select Code to Download


  1. or download this
    my %total;
    my %by_file;
    ...
      $total{$_}++;
      $by_file{$ARGV}{$_}++;
    }
    
  2. or download this
    my @strings = sort keys %total;
    for my $string ( @strings ) {
    ...
       }
       print( "\n" );
    }