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.
The file is structured like this:
... ... some garbage ... ... garbage START what i want is on different lines END ... ... more garbage ... next one START more stuff I want, again spread through multiple lines END ... more garbage
So, I'm looking for a way to extract the lines between each "START" and "END" delimiter strings. How can I do this?
So far, I've only found some examples on how to print a line with the "START" string, or other documentation items that are somewhat related with what I'm looking for.