linux find in files recursive @text code example
Example 1: linux search for a given string in all files recursively
$ grep -r "String to be searched goes here" *
Example 2: find file with text in the file recursively
grep -rnw '/path/to/somewhere/' -e 'pattern'