find . -name '*.*' -type f -print0 | xargs -0 grep -l "phrase"
Można też dodać skróconą formę tego polecenia w .bashrc
vim ~/.bashrc
findtext() { find . -name '*.*' -type f -print0 | xargs -0 grep -l "$*" }