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