Risposte:
find / -name "*.txt" -exec grep "text here" {} \; -print 2>/dev/null
Che può essere spiegato in parole umane come:
Il seguente comando cerca tutti i file che terminano con .txt nella directory di lavoro corrente e in tutte le sottodirectory:
find . -type f -name '*.txt' -exec grep -Hn "text here" {} \;