Thread Lesen log file
(6 answers)
Opened by lddzjwwy at 2013-05-27 10:26
So ganz hab ich das Problem nicht verstanden, aber hilft vielleicht ein perlop
flip-flop operator weiter? PS: Ich würd über so eine grosse Schleife kein $_ benutzen und auch $1 möglichst sofort abholen. [EDIT] Grobgerüst Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 my $command = ''; for my $line (@d) { if ($line =~ /^<(.+)/ ... $line =~ /^<($command)/) { $command = $1; say "REIN ".$command.' '.$line; } else { say "RAUS ".$command.' '.$line; } } Last edited: 2013-05-27 11:10:35 +0200 (CEST) 1 + 1 = 10
|