6 Einträge, 1 Seite |
1 2 3 4
RTTs of replies in ms: min/avg/max: 0.093 / 0.104 / 0.128 RTTs of replies in ms: min/avg/max: 0.079 / 0.200 / 0.517 RTTs of replies in ms: min/avg/max: 0.081 / 0.090 / 0.101 RTTs of replies in ms: min/avg/max: 0.090 / 0.248 / 0.709
1 2 3 4 5 6 7 8 9 10
my $content = qq~1: RTTs of replies in ms: min/avg/max: 0.093 / 0.104 / 0.128 2: RTTs of replies in ms: min/avg/max: 0.079 / 0.200 / 0.517 3: RTTs of replies in ms: min/avg/max: 0.081 / 0.090 / 0.101 4: RTTs of replies in ms: min/avg/max: 0.090 / 0.248 / 0.709 qq~; while($content =~ m!RTTs of replies in ms: min/avg/max: \d\.\d* / (\d\.\d*) / \d\.\d*!gs) { print "avg: " . $1 . "\n"; }
1 2 3 4 5
my $content = <output>; while($content =~ m!RTTs of replies in ms: min/avg/max: \d\.\d* / (\d\.\d*) / \d\.\d*!gs) { print "avg: " . $1 . "\n"; }
1 2 3 4 5 6 7
while(my $line = <output>) { if($line =~ m!RTTs of replies in ms: min/avg/max: \d\.\d* / (\d\.\d*) / \d\.\d*!) { print "avg: " . $1 . "\n"; } }
6 Einträge, 1 Seite |