Re: Quick Easy Help

2001-12-26 Thread Ben Ocean
At 04:11 PM 12/25/01 -0500, you wrote: On Tue, 25 Dec 2001, Ben Ocean wrote: At 12:52 AM 12/26/01 +1000, you wrote: On Tue, 25 Dec 2001, Ben Ocean wrote: Hi; I need to be able to search the files in a directory for a certain word and return the files that have it. What's

Quick Easy Help

2001-12-25 Thread Ben Ocean
Hi; I need to be able to search the files in a directory for a certain word and return the files that have it. What's the easy way to do this? TIA, BenO ___ Redhat-list mailing list [EMAIL PROTECTED]

Re: Quick Easy Help

2001-12-25 Thread David
On Tue, 25 Dec 2001, Ben Ocean wrote: Hi; I need to be able to search the files in a directory for a certain word and return the files that have it. What's the easy way to do this? grep -l word dir/* David. ___ Redhat-list mailing list [EMAIL

Re: Quick Easy Help

2001-12-25 Thread Ben Ocean
At 12:52 AM 12/26/01 +1000, you wrote: On Tue, 25 Dec 2001, Ben Ocean wrote: Hi; I need to be able to search the files in a directory for a certain word and return the files that have it. What's the easy way to do this? grep -l word dir/* Just to make sure I have this right... grep

Re: Quick Easy Help

2001-12-25 Thread rpjday
On Tue, 25 Dec 2001, Ben Ocean wrote: At 12:52 AM 12/26/01 +1000, you wrote: On Tue, 25 Dec 2001, Ben Ocean wrote: Hi; I need to be able to search the files in a directory for a certain word and return the files that have it. What's the easy way to do this? grep -l word dir/*

Re: Quick Easy Help

2001-12-25 Thread Gordon Messmer
On Tue, 25 Dec 2001, rpjday wrote: On Tue, 25 Dec 2001, Ben Ocean wrote: grep -l word dir/* Just to make sure I have this right... grep dash pipe my chosen word the directory it's in/* that's not a pipe, that's an ell. and you would be strongly urged to read the man page for