![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trouble with awk | RichieFondel | Shell Programming and Scripting | 1 | 01-17-2008 04:30 AM |
| X trouble | izua | UNIX for Dummies Questions & Answers | 0 | 01-03-2007 03:19 PM |
| Trouble with tr | Mike@Work | SUN Solaris | 8 | 08-10-2006 12:04 PM |
| The trouble with... | zazzybob | What's on Your Mind? | 6 | 01-18-2005 03:01 AM |
| trouble | awk | UNIX Desktop for Dummies Questions & Answers | 1 | 11-22-2002 07:51 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
The trouble with FIND .......
Afternoon,
I have a problem with the FIND and GREP commands working together. The command that I am typing is this:- find . -name *.sql -print --- This finds all files with an SQL suffix I then want to examine all those files to check for the existence of a string in them. I am attempting to find "ORACLE" in the matching files by typing this:- find . -name *.sql -print -exec grep "ORACLE" * This is obviously not correct. What should it be? Cheers Jason |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
find . -name "*.sql" -exec grep -l "ORACLE" {} \;
This will list all the files which have the term "ORACLE" in them. Regards. |
|
#3
|
|||
|
|||
|
Speedy response
Thanks very much for your speedy response.
Magnificent. |
|||
| Google The UNIX and Linux Forums |