in reply to Re: Re^3: Find file that contains "....." (command in Unix)
in thread Find file that contains "....." (command in Unix)

And then we're back full circle.
find . -name '*.txt' | xargs grep '\.\.\.\.'
And if you have a GNUish xargs, chances are you have a GNUish grep that understands -r..

Makeshifts last the longest.