How to search string in all files in a folder and sub folder recursivelly
How to use “grep” command in linux or macos to find text inside all files in a folder and including subdirectories Command for the same is grep -rl “string to search” /absolute-path/to/folder/ -r (or –recursive) option is used to traverse also all sub-directories of /path -l (or –files-with-matches) option is used to o
Read article
