Re: replacing GNU grep with UNIX grep.

2003-02-09 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-02-03 13:20:04 +0100:
 Sergey Babkin [EMAIL PROTECTED] writes:
  Also the GNU grep has a lot more options, the most interesting
  of them being -r.
 
 Unfortunately, GNU grep's -r option is broken (it does not handle
 symnlinks correctly).  Try textproc/freegrep from ports instead.

I believe the Subversion team has a BSD-like-licensed grep library.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-02-09 Thread Garrett Rooney
On Sunday, February 9, 2003, at 05:12 PM, Roman Neuhauser wrote:


# [EMAIL PROTECTED] / 2003-02-03 13:20:04 +0100:

Sergey Babkin [EMAIL PROTECTED] writes:

Also the GNU grep has a lot more options, the most interesting
of them being -r.


Unfortunately, GNU grep's -r option is broken (it does not handle
symnlinks correctly).  Try textproc/freegrep from ports instead.


I believe the Subversion team has a BSD-like-licensed grep library.


no, we don't.  we have a BSD-like-licensed diff library that's coming 
along nicely, and hopefully will replace gnu diff/diff3 in subversion 
fairly soon, but not grep.

-garrett


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message


Re: replacing GNU grep with UNIX grep.

2003-02-09 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-02-09 17:29:57 -0500:
 On Sunday, February 9, 2003, at 05:12 PM, Roman Neuhauser wrote:
 
 # [EMAIL PROTECTED] / 2003-02-03 13:20:04 +0100:
 Sergey Babkin [EMAIL PROTECTED] writes:
 Also the GNU grep has a lot more options, the most interesting
 of them being -r.
 
 Unfortunately, GNU grep's -r option is broken (it does not handle
 symnlinks correctly).  Try textproc/freegrep from ports instead.
 
 I believe the Subversion team has a BSD-like-licensed grep library.
 
 no, we don't.  we have a BSD-like-licensed diff library that's coming 
 along nicely, and hopefully will replace gnu diff/diff3 in subversion 
 fairly soon, but not grep.

doh, I'm an idiot.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-02-04 Thread Eirik Nygaard
On Mon, Feb 03, 2003 at 11:39:47PM -0500, Munish Chopra wrote:
 On 2003-02-03 18:51 +, Lyndon Nerenberg wrote:
  The classic Unix including BSD4.4 UNIX is now under a
  BSD-like license too (finding it is another issue
  though ;).
  
  Kirk McKusick sells a CD-ROM collection containing all the CSRG
  distributions:
  
  https://www.mckusick.com/csrg/
  
  Pretty much everything that had to be GNUified in BSD/386 and friends
  (thanks to the Death Star's lawyers) can be found in all its glory on
  the CDs. And thanks to Caldera, it can now be freely distributed.
  
  A lot of the CSRG code is missing functionality that we've picked up
  along the way, and much of it is pre-ANSI C, so there's work to be done
  to bring it up to date. Regardless, the CSRG code is a good starting
  point for a lot of things. (For example, I'm currently about half way
  through getting troff updated.)
 
 I think tjr mentioned he had started converting a few utilities. Anyone
 picking things up may want to pick up where he left off.
 
 -- 
 Munish Chopra
 

I am working on a BSD lisenced grep, missing some functions. Checking if
file is a binary file and some other small things.
If anyone wants I can upload it somewhere.

-- 

Eirik Nygaard [EMAIL PROTECTED]
PGP Key: 83C55EDE



msg39619/pgp0.pgp
Description: PGP signature


Re: replacing GNU grep with UNIX grep.

2003-02-03 Thread Dag-Erling Smorgrav
Sergey Babkin [EMAIL PROTECTED] writes:
 Also the GNU grep has a lot more options, the most interesting
 of them being -r.

Unfortunately, GNU grep's -r option is broken (it does not handle
symnlinks correctly).  Try textproc/freegrep from ports instead.

DES
-- 
Dag-Erling Smorgrav - [EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-02-03 Thread Pedro F. Giffuni
The classic Unix including BSD4.4 UNIX is now under a
BSD-like license too (finding it is another issue
though ;). Anyone from those days remembers anything
that might be worth resurrecting?

cheers,

Pedro.

 --- James P. Howard II [EMAIL PROTECTED] ha
scritto:  Pedro F. Giffuni said:
  That's very cool! Congratulations!
 
  NetBSD has a BSD sort, I understand it's based on
 the
  Minix version, so we are getting very near to
 cleaning
  all the utilities from the GPL.
 
 I looked at doing sort some time ago, but that was
 before Minix went BSDL.
  I also had a almost-complete (missing two
 functions) version of dc(1),
 but lost it in a hard-disk crash.  I never got
 around to redoing it. 
 Perhaps I will again soon.
 
 Jamie
 
  

__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-02-03 Thread Lyndon Nerenberg
The classic Unix including BSD4.4 UNIX is now under a
BSD-like license too (finding it is another issue
though ;).

Kirk McKusick sells a CD-ROM collection containing all the CSRG
distributions:

https://www.mckusick.com/csrg/

Pretty much everything that had to be GNUified in BSD/386 and friends
(thanks to the Death Star's lawyers) can be found in all its glory on
the CDs. And thanks to Caldera, it can now be freely distributed.

A lot of the CSRG code is missing functionality that we've picked up
along the way, and much of it is pre-ANSI C, so there's work to be done
to bring it up to date. Regardless, the CSRG code is a good starting
point for a lot of things. (For example, I'm currently about half way
through getting troff updated.)

--lyndon

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-02-03 Thread Munish Chopra
On 2003-02-03 18:51 +, Lyndon Nerenberg wrote:
 The classic Unix including BSD4.4 UNIX is now under a
 BSD-like license too (finding it is another issue
 though ;).
 
 Kirk McKusick sells a CD-ROM collection containing all the CSRG
 distributions:
 
   https://www.mckusick.com/csrg/
 
 Pretty much everything that had to be GNUified in BSD/386 and friends
 (thanks to the Death Star's lawyers) can be found in all its glory on
 the CDs. And thanks to Caldera, it can now be freely distributed.
 
 A lot of the CSRG code is missing functionality that we've picked up
 along the way, and much of it is pre-ANSI C, so there's work to be done
 to bring it up to date. Regardless, the CSRG code is a good starting
 point for a lot of things. (For example, I'm currently about half way
 through getting troff updated.)

I think tjr mentioned he had started converting a few utilities. Anyone
picking things up may want to pick up where he left off.

-- 
Munish Chopra

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-01-18 Thread Sergey Babkin
Pedro F. Giffuni wrote:
 
 FWIW;
 
 The UNIX grep executable is like 3 times smaller than
 GNU grep but also like 3 times slower.

I think that it's said in GNU grep readme: they have knowingly
chosen a faster but more memory-consuming algorithm. And I think
that they've done similar choices in the other tools as well.
After all, we are not limited by a 64KB limit any more, are we ? :-)
 
 Also .. JIC you wonder, I only built this for
 curiosity, I recommend keeping GNU grep unless Caldera
 changes the license :).

Also the GNU grep has a lot more options, the most interesting
of them being -r.

-SB

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



replacing GNU grep with UNIX grep.

2003-01-17 Thread Pedro F. Giffuni
Hi guys;

I replaced GNU grep with SCO's grep from
http://unixtools.sourceforge.net . They are both
covered by the same license (GPL) so there might not
be any real advantage in the replacement. I haven't
compared performance either.

Compiling was trivial, I only had to cut and paste one
function from stubs.c in their libregexp stuff and it
seems to work fine. 
I just wanted to mention this in case there someone
interested in an alternative.

cheers,

Pedro.

__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: replacing GNU grep with UNIX grep.

2003-01-17 Thread Pedro F. Giffuni
FWIW;

The UNIX grep executable is like 3 times smaller than
GNU grep but also like 3 times slower.

Also .. JIC you wonder, I only built this for
curiosity, I recommend keeping GNU grep unless Caldera
changes the license :).

Pedro.

__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message