Help for this page
grep -F -r -I -l '.....' . | grep '.txt$'
find . -type f -name '*.txt' -print0 | xargs -0 grep -F -l '.....'