Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 198 Bytes

File metadata and controls

8 lines (7 loc) · 198 Bytes

Find files containing specific text:

grep -iRl "specific text" dir

-i ignore text case
-R recursively search files in subdirectories
-l show file names instead of file contents portions