The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
find , grep
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
find , grep
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
02-01-2008
bobbygsk
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>
bobbygsk
View Public Profile
Find all posts by bobbygsk