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 %
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 %