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

or just find . -type f -exec grep -lq "\.\.\.\.\." {} \;

-Waswas