grep -r word *
This command will find all occurrences of “word” in all the files under the current directory (or sub-directories).
Source: How to find a text file which contains a specific word inside (not in its name)
grep -r word *
This command will find all occurrences of “word” in all the files under the current directory (or sub-directories).
Source: How to find a text file which contains a specific word inside (not in its name)