Help for this page
find . -type f -exec grep "\.\.\.\.\." /dev/null {} \;
grep -r "\.\.\.\.\." .
find . -type f -exec grep -q "\.\.\.\.\." {} \; -exec echo 'Found {}' + \;