In Linux, to find files containing some text, type this at the root directory of your search path:
grep -lir "the text you are looking for" *
-l limits the output to filenames (lowercase L)
-i ignores case
-r recurses
- Updated
How To's
3,933 views · 0 found this helpful
In Linux, to find files containing some text, type this at the root directory of your search path:
grep -lir "the text you are looking for" *
-l limits the output to filenames (lowercase L)
-i ignores case
-r recurses