The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: find , grep
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 02-01-2008
bobbygsk bobbygsk is offline
Registered User
 

Join Date: Oct 2007
Posts: 70
To find the string in all the files
Quote:
grep <string> *
To find the string in the files in all the sub directories
Quote:
find . -type f -print | grep <string>
Reply With Quote