Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    use strict;
    ...
     
    close $in;
    close $out;
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    use warnings;
    ...
    for my $entity (sort keys %freq) {    
        printf OUT "%-20s %10s \n", $entity, $freq{$entity};
    }