|
I've changed it to:
find /directory/I/want to/search/ -type f | \
while read file
do
grep -f strings.txt $results.txt
done
Results now are:
grep: .txt: No such file or directory
Can someone spell out exactly how I should have it based on the example I've been using?
Thanks upstate boy
|