Does anyone have code for finding a file that contains a regular expression? I would assume you could have two different flavors, one for BREs and one for EREs.
You
If you are looking specifically for files that contain only or mostly regular expressions, then statistics should tell you that a certain file contains more of that syntax than others. So you could define a set of indicators, and combine their scores into a metric that scored a file on how likely it was to be of interest. Pick a cutoff and let it go. Some indicators:
But if this is just a one-shot, then you're probably best off using Chaos's answer and manually paring down the results. Is there anything in particular in the regex(es) you are looking for, that might be easier to pick up on?