Asked by Sumit Talwar · · 2 answers
You can use grep -ilR
:
grep -Ril "text-to-find-here" /directory-path
-
i
stands for ignore case (optional in your case). -
R
stands for recursive. -
l
stands for "show the file name, not the result itself".
0
0