Help for this page

Select Code to Download


  1. or download this
    $ID = $Fields[6];
    push (@id, $ID);
    
  2. or download this
    $ID = $Fields[6];
    $id{$ID}{count}++;  # keep track of unique ID counts
    
  3. or download this
    foreach $id(@id)
    
  4. or download this
    foreach my $id(keys %id)
    
  5. or download this
    $id{$id}{transport} = $TRANSPORT;
    
  6. or download this
    printf "%-20s %5d %10s\n", $id, $id{$id}{count}, $id{$id}{transport};
    
  7. or download this
    foreach $FTP_Lines(@FTP_Lines)
    {
    ...
                                   $id{$id}{transport};
      }
    }