Re: [expert] grep complexity

2000-05-31 Thread joakim viktorsson
On Wed, 31 May 2000, Thomas Lockhart wrote: > > -> ... All I want to do is search all the *.c file > > -> recursively starting from a specific directory for a specific string... > > -> grep -r -e "function something" -f *.c > > I'd start with: > > grep -i "function" *.c > > The above will search

Re: [expert] grep complexity

2000-05-31 Thread Thomas Lockhart
> -> ... All I want to do is search all the *.c file > -> recursively starting from a specific directory for a specific string... > -> grep -r -e "function something" -f *.c > I'd start with: > grep -i "function" *.c The above will search all .c files in the current directory, but will not descen

RE: [expert] grep complexity

2000-05-31 Thread Wizaerd
thanx... > -Original Message- > From: Charles Curley [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 31, 2000 8:02 AM > To: Expert mailing list > Subject: Re: [expert] grep complexity > > > On Wed, May 31, 2000 at 06:46:44AM -0700, Joe Sheble wrote: >

RE: [expert] grep complexity

2000-05-31 Thread Wizaerd
thanx... that did indeed work... > -Original Message- > From: Suppiluliuma [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 31, 2000 8:09 AM > To: [EMAIL PROTECTED] > Subject: Re: [expert] grep complexity > > > On Wed, 31 May 2000, Joe Sheble wrote: > > Co

Re: [expert] grep complexity

2000-05-31 Thread Suppiluliuma
On Wed, 31 May 2000, Joe Sheble wrote: > Could grep be any more difficult to figure out? I'll admit I'm new to > Linux, but so far everything I've set out to do (set up a server, set up > sendmail, set up Apache, set up PHP, etc...) I have accomplished fairly > easy. Except for grep... All I wa

Re: [expert] grep complexity

2000-05-31 Thread Charles Curley
On Wed, May 31, 2000 at 06:46:44AM -0700, Joe Sheble wrote: -> Could grep be any more difficult to figure out? I'll admit I'm new to -> Linux, but so far everything I've set out to do (set up a server, set up -> sendmail, set up Apache, set up PHP, etc...) I have accomplished fairly -> easy. Exc

[expert] grep complexity

2000-05-31 Thread Joe Sheble
Could grep be any more difficult to figure out? I'll admit I'm new to Linux, but so far everything I've set out to do (set up a server, set up sendmail, set up Apache, set up PHP, etc...) I have accomplished fairly easy. Except for grep... All I want to do is search all the *.c file recursively