Help for this page

Select Code to Download


  1. or download this
    find . -type f -exec grep "\.\.\.\.\." /dev/null {} \;
    
  2. or download this
    grep -r "\.\.\.\.\." .
    
  3. or download this
    find . -type f -exec grep -q "\.\.\.\.\." {} \;  -exec echo 'Found {}'
    + \;