ubuntu find string in files recursively code example
Example 1: linux search for a given string in all files recursively
$ grep -r "String to be searched goes here" *
Example 2: ubuntu find filename recursive
find . -name '*.xml'
$ grep -r "String to be searched goes here" *
find . -name '*.xml'