Grep
grep -rnw '/path/to/somewhere/' -e 'pattern'
-rrecursive-nline number-wmatch the whole word.-llist the file name-ewhat follows is the PATTERN to search for.-A <number>print the matching line, then this many lines afterwards.
References
Find all files containing a specific text (string) on Linux - Stack Overflow