Skip to content

Instantly share code, notes, and snippets.

View StokicDusan's full-sized avatar

Dušan Stokić StokicDusan

View GitHub Profile
@StokicDusan
StokicDusan / searchText.md
Last active August 28, 2022 18:04
A way to find all files which contain string

A way to find all files which contain specific text

find -type f -exec grep -IH 'word' {} \;

If the patters are in a file, use:

xargs -a patterns.txt -I% find Folder/ -name %