Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
        use strict;
    ...
           push ( @cols , $_ ); # unless /Bandwidth.*|MSTCPLoop.*/ ;
        }
        print ("@cols \n");
    
  2. or download this
    #!/usr/bin/perl
        use strict;
    ...
        @avgsHash{ @cols } = @avgs;  
        print "Col,Avg\n";
        printf("%s,%f\n", $_, $avgsHash{$_}) for @cols;