Re: script looking for expression in files

2003-01-08 Thread R. Joseph Newton
Hi John, Do you have a C compiler installed. I found that grep also works on my W2K system, but explorinmg farther, I did a search on grep and found tht it was available only through my Borland C++ 5.02 and C++ Builder installations. It does not, for some reason, come as part of the ActiveSta

Re: script looking for expression in files

2003-01-08 Thread R. Joseph Newton
Hi Rob, Works on mine. Make sure you don't forget the star. That apparently is the file specifier. Joseph Rob Dixon wrote: > John > > That doesn't seem to work on my Win2K system ;-) > > Rob > > "John W. Krahn" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED].

Re: script looking for expression in files

2003-01-08 Thread John W. Krahn
Rob Dixon wrote: > > "John W. Krahn" <[EMAIL PROTECTED]> wrote in message > > > > grep -lr "string" * > > That doesn't seem to work on my Win2K system ;-) It works fine on my Win95 system. :-) John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: script looking for expression in files

2003-01-08 Thread Rob Dixon
John That doesn't seem to work on my Win2K system ;-) Rob "John W. Krahn" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Martin Hudec wrote: > > > > Hello, > > Hello, > > > I need to call a script which will be searching for string (posted > > from PHP)

Re: script looking for expression in files

2003-01-08 Thread John W. Krahn
Martin Hudec wrote: > > Hello, Hello, > I need to call a script which will be searching for string (posted > from PHP) in all files in one directory and its subdirectories and then > it will print filenames in which it found the string to STDOUT > > Can anyone help me please with th