I needed to find all the files that contained a specific string pattern. The first solution that comes to mind is using find piped with xargs grep:
Here is the example using GNU grep:
grep -Pzo '_name.*\n.*_description'
-z/--null-data Treat input and output data as sequences of lines.
-z
--null-data
See also here