Code:
find /path/to/search/in -type f | \
while read filename
do
grep -f /path/to/strings.txt $filename
done > /home/upstate_boy/results.txt
grep -f <file> means to use the strings in <file> as search strings for grep.
The done > filename part writes the output of the loop to filename