I rarely have to deal with scripting, so I'm up against a lack of knowledge for this problem.
I have a file >500mb in text, which is nicely sectioned, but I know there are 5 to 10 "bad" sections inside. The data within the sections can be evaluated pretty easily by a human, I don't know how to do it in a program.
I pick up a known good value in #Field MyField - however if that value did not appear in #FIELD LOCATION, something went wrong.
An example of two sections within the file looks like this. The first is 'bad' and the second is 'good'.
#START Descriptor
#FIELD LOCATION="http://path.to/file/here&Value=FOO&OtherValue=BLAH"
#FIELD AnythingElse
#FIELD MyField="BAR"
#END
#START Descriptor
#FIELD LOCATION="http://path.to/file/here&Value=BAR&OtherValue=BLAH"
#FIELD AnythingElse
#FIELD MyField="BAR"
#END
Sections start and end logically, with
#STARTand#ENDIf
#FIELD LOCATIONdoes not exist, go to next sectionIf
#FIELD MyField="BAR"and#FIELD LOCATIONdoes not containBAR, print all lines from this section to a new file.Note - Clarification of
#FIELD MyField="BAR"- this is a check value I put in by grabbing other info about the data as this file is being built (in my case it is a language indicator, such as EN or DE. so it would literally be#FIELD MyField="EN"Any other value in this field would be ignored, this isn't a record that matches my criteria.
I believe this can be done in Awk or Perl, I can do very simple one-liners but this is beyond my skills.

Value=FOOin the URL vs.BARin theMyField? (and is there supposed to be a quote before thehttpin the good section?) – Kevin Jan 23 '12 at 20:24