mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
296 B

  1. #!/usr/bin/perl -w
  2. use strict;
  3. use English;
  4. my $min_points = 50;
  5. my %tuples;
  6. while (<>) {
  7. next unless /^\*\*\s+([0-9\.]+):\s+(\S+)\s+(\S+)/;
  8. $tuples{sprintf "%-14s\t%-22s", $2, $3} += $1;
  9. }
  10. foreach (keys %tuples) {
  11. next if $tuples{$_} < 50;
  12. printf "** %9.0f:\t%s\n", $tuples{$_}, $_;
  13. }