Help for this page

Select Code to Download


  1. or download this
    grep -F -r -I -l '.....' . | grep '.txt$'
    
  2. or download this
    find . -type f -name '*.txt' -print0 | xargs -0 grep -F -l '.....'