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