Linux / UNIX Recursively Search All Files For A String
https://www.cyberciti.biz/faq/howto-recursively-search-all-files-for-words/
How to use grep command to recursively search All files for a String Following symtlinks The following syntax will read and search all files under each directory, recursively. Follow all symbolic links too by passing the -R (capital R ): ... Case sensitive recursive search To ignore case distinctions, try: grep -ri "word" . Displaying files name when searching for a string/word To display print only the filenames with GNU grep, enter: grep -r -l "foo" . ...
Following symtlinks The following syntax will read and search all files under each directory, recursively. Follow all symbolic links too by passing the -R (capital R ): ...
Case sensitive recursive search To ignore case distinctions, try: grep -ri "word" .
Displaying files name when searching for a string/word To display print only the filenames with GNU grep, enter: grep -r -l "foo" . ...
DA: 21 PA: 18 MOZ Rank: 65