Help for this page

Select Code to Download


  1. or download this
    foreach my $key ( keys %ifSpeeds )
    {
    ...
            $counter = 1;
        }
    }
    
  2. or download this
    use List::MoreUtils qw(natatime);
    my $it = natatime(9, (keys %ifSpeeds));
    while (my @vals = $it->()) {
        print "@vals\n";
    }