Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 171 Bytes

find.md

File metadata and controls

7 lines (5 loc) · 171 Bytes

Find

Search for files containing two strings, no matter at which location or line:

find . -type f -exec grep -q STRING1 {} \; -exec grep -l STRING2 {} \;