in reply to Re^2: Skip header text when comparing time
in thread Skip header text when comparing time
You could useif ($line =~ /^\b\d/)
I didn't test it since I don't have a sample of your input, but something along those lines should process your steps only if the lines have a colon in them. Alternatively, if the headers and only the headers contain "perf" in them, you could doif ($line =~ m/:/)
if ($line !~ m/perf/)
|
|---|