searching for file in linux

skisteven1

Senior member
Jul 15, 2003
537
0
0
ok, here's what I'd like to do. I'd like to recursively search every file in a directory for a specific phrase /within/ the file.

What I've got:

cat `find .` | grep "phrase"

but then I don't know what file it's in. ideas?