Help for this page

Select Code to Download


  1. or download this
    while (<FILE>){ 
         my ($src,$sport) = (split /;/)[9,12];
         $hash{$src}{$sport}++;  
    }
    
  2. or download this
    foreach my $src ( keys %hash ) {
        foreach my $sport ( keys %{$hash{$src}} ) {
    ...
                   $src, $sport, $hash{$src}{$sport};
        }
    }