I have an ASCII log file with some content I would like to extract. I\'ve never taken time to learn Perl properly, but I figure this is a good tool for this task.
Th
while (<>) { chomp; # strip record separator if(/END/) { $f=0;} if (/START/) { s/.*START//g; $f=1; } print $_ ."\n" if $f; }
try to write some code next time round