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?
Beyond
egrep '/.+/' file
you're looking at a really involved exercise.
Regular expressions are themselves not a regular language. The clue is that they contain parentheses and square brackets and such that must be balanced.
A regular expression itself can be described by a context-free grammar, and parsed with a recursive-descent parser.