Unix find command

Find a string in all files
find . -exec grep "JREQUEST_ALLOWRAW" '{}' ; -print
With 20/20 hindsight I think this is easier though:
grep -r "JREQUEST_ALLOWRAW" .
Find a string in all files
find . -exec grep "JREQUEST_ALLOWRAW" '{}' ; -print
With 20/20 hindsight I think this is easier though:
grep -r "JREQUEST_ALLOWRAW" .