How to find text in a Unix file ?

 

find . -type f -name "*.*" -exec grep -il "YOUR TEXT" {} \;

Comments