Help for this page

Select Code to Download


  1. or download this
    while (<>) {
      my ($f) = (split)[6];
      $count{$f}++;
    }
    
  2. or download this
    while (<>) {
      $count{(split)[6]}++;
    }
    
  3. or download this
    $count{(split)[6]}++ while <>;