Leser: 1
3 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
while (<ANY>) {
......CODE.......
$OutRecord = "$client:$hosts:$topin:$topout";
push @OutRecord, $OutRecord;
}
foreach (@OutRecord) {
print $_."\n"; # Einfach testen!
}
...................... WAS PASSIERT .........................
1:3804.5:921.5:
2:20616:4301:0.5
3:0:0:0
4:0:0:0
1
2
3
$OutRecord = "$hosts:$topin:$topout:$client";
..................................................................
@OutRecord = sort { $b<=>$a } @OutRecord;
1
2
3
4
5
6
7
8
sub get_hosts {
my @parts = split ":", shift;
return $parts[1];
}
@OutRecord = sort {
get_hosts($b) <=> get_hosts($a)
} @OutRecord
3 Einträge, 1 Seite |