grep -Ril "text-to-find-here" path-to-starting-directory # search files in directories under this directory
-R: recursive-i: ignore case
-l: show the file name, not the result itself
source
grep -Ril "text-to-find-here" path-to-starting-directory # search files in directories under this directory
-R: recursive