Re: There's something about OpenBSD...

2008-02-22 Thread Janne Johansson
[EMAIL PROTECTED] wrote: For instance 'ggrep -r ...' instead of 'grep -r ...' to search recursively with gnu grep (a worthless feature imho). Displaying the name of the file and the matched line nicely like grep -r does is not elegant with find + grep without using a script or a long and

Re: There's something about OpenBSD...

2008-02-22 Thread Alexander Hall
Janne Johansson wrote: [EMAIL PROTECTED] wrote: For instance 'ggrep -r ...' instead of 'grep -r ...' to search recursively with gnu grep (a worthless feature imho). Displaying the name of the file and the matched line nicely like grep -r does is not elegant with find + grep without using a

Re: There's something about OpenBSD...

2008-02-21 Thread Henri Salo
On Thu, 21 Feb 2008 21:53:43 +0530 Mayuresh Kathe [EMAIL PROTECTED] wrote: What is it about OpenBSD that I can't resist it? After the past long exchange about our ultimate goal and a lot of people advising me to go over to Solaris 10, I did, I removed OpenBSD from one of my machines and

There's something about OpenBSD...

2008-02-21 Thread Mayuresh Kathe
What is it about OpenBSD that I can't resist it? After the past long exchange about our ultimate goal and a lot of people advising me to go over to Solaris 10, I did, I removed OpenBSD from one of my machines and installed Solaris Express Developers Edition. It was slick looking, very graphical

Re: There's something about OpenBSD...

2008-02-21 Thread raven
And...you forgot to say: Sorry for my dumbness to all developers that give you an answer. Now, you have to kiss all their ass. Francesco Mayuresh Kathe ha scritto: What is it about OpenBSD that I can't resist it? After the past long exchange about our ultimate goal and a lot of people

Re: There's something about OpenBSD...

2008-02-21 Thread Mayuresh Kathe
Sorry for my dumbness, to all developers :) On Thu, Feb 21, 2008 at 10:56 PM, raven [EMAIL PROTECTED] wrote: And...you forgot to say: Sorry for my dumbness to all developers that give you an answer. Now, you have to kiss all their ass. Francesco Mayuresh Kathe ha scritto: What is

Re: There's something about OpenBSD...

2008-02-21 Thread Henning Brauer
* raven [EMAIL PROTECTED] [2008-02-21 18:50]: Now, you have to kiss all their ass. err, I'll pass... -- Henning Brauer, [EMAIL PROTECTED], [EMAIL PROTECTED] BS Web Services, http://bsws.de Full-Service ISP - Secure Hosting, Mail and DNS Services Dedicated Servers, Rootservers, Application

Re: There's something about OpenBSD...

2008-02-21 Thread Nick Holland
Mayuresh Kathe wrote: What is it about OpenBSD that I can't resist it? After the past long exchange about our ultimate goal and a lot of people advising me to go over to Solaris 10, I did, I removed OpenBSD from one of my machines and installed Solaris Express Developers Edition. It was slick

Re: There's something about OpenBSD...

2008-02-21 Thread Jason Dixon
On Feb 21, 2008, at 1:40 PM, Nick Holland wrote: Mayuresh Kathe wrote: What is it about OpenBSD that I can't resist it? yeah, I've been doing some things with Solaris for work, it's stunned me that an OS can take most of DVD...and still be missing what I would call absolute basics that

Re: There's something about OpenBSD...

2008-02-21 Thread Richard Daemon
On Thu, Feb 21, 2008 at 2:30 PM, Jason Dixon [EMAIL PROTECTED] wrote: On Feb 21, 2008, at 1:40 PM, Nick Holland wrote: Mayuresh Kathe wrote: What is it about OpenBSD that I can't resist it? yeah, I've been doing some things with Solaris for work, it's stunned me that an OS can

Re: There's something about OpenBSD...

2008-02-21 Thread Han Boetes
Jason Dixon wrote: Sun Microsystems Inc. SunOS 5.10 Generic January 2005 -bash-3.00$ grep -r foo * grep: illegal option -- r Usage: grep -hblcnsviw pattern file . . . You are not using the default shell. :-) The ksh implementation that comes with solaris is horrible indeed. # Han

Re: There's something about OpenBSD...

2008-02-21 Thread Marco Peereboom
real men use find On Thu, Feb 21, 2008 at 02:30:30PM -0500, Jason Dixon wrote: On Feb 21, 2008, at 1:40 PM, Nick Holland wrote: Mayuresh Kathe wrote: What is it about OpenBSD that I can't resist it? yeah, I've been doing some things with Solaris for work, it's stunned me that an OS can

Re: There's something about OpenBSD...

2008-02-21 Thread a . velichinsky
On Thu, Feb 21, 2008 at 01:40:28PM -0500, Nick Holland wrote: Mayuresh Kathe wrote: What is it about OpenBSD that I can't resist it? After the past long exchange about our ultimate goal and a lot of people advising me to go over to Solaris 10, I did, I removed OpenBSD from one of my

Re: There's something about OpenBSD...

2008-02-21 Thread raven
Marco Peereboom ha scritto: real men use find or locate (1) Francesco

Re: There's something about OpenBSD...

2008-02-21 Thread Jussi Peltola
On Thu, Feb 21, 2008 at 11:22:25PM +0200, [EMAIL PROTECTED] wrote: For instance 'ggrep -r ...' instead of 'grep -r ...' to search recursively with gnu grep (a worthless feature imho). Displaying the name of the file and the matched line nicely like grep -r does is not elegant with find + grep

Re: There's something about OpenBSD...

2008-02-21 Thread Edd Barrett
On Thu, Feb 21, 2008 at 11:22:25PM +0200, [EMAIL PROTECTED] wrote: Yes quite, its all there but in odd places. Also not that make is in /usr/ccs/bin The thing that put me off sx developer edition is that it requires a whopping 760MB of RAM for install. Solaris 10 and Solaris Express and

Re: There's something about OpenBSD...

2008-02-21 Thread Nick Bender
On Thu, Feb 21, 2008 at 5:08 PM, Jussi Peltola [EMAIL PROTECTED] wrote: Displaying the name of the file and the matched line nicely like grep -r does is not elegant with find + grep without using a script or a long and inelegant alias - or if it is, I'd be interested in how it can be done

Re: There's something about OpenBSD...

2008-02-21 Thread Marco Peereboom
What's wrong with: find . -name *.[ch] -exec grep blah {} \; -print On Feb 21, 2008, at 4:08 PM, Jussi Peltola [EMAIL PROTECTED] wrote: On Thu, Feb 21, 2008 at 11:22:25PM +0200, [EMAIL PROTECTED] wrote: For instance 'ggrep -r ...' instead of 'grep -r ...' to search recursively with gnu

Re: There's something about OpenBSD...

2008-02-21 Thread Jason Dixon
On Thu, Feb 21, 2008 at 06:15:32PM -0500, Nick Bender wrote: On Thu, Feb 21, 2008 at 5:08 PM, Jussi Peltola [EMAIL PROTECTED] wrote: Displaying the name of the file and the matched line nicely like grep -r does is not elegant with find + grep without using a script or a long and

Re: There's something about OpenBSD...

2008-02-21 Thread a . velichinsky
On Fri, Feb 22, 2008 at 12:08:54AM +0200, Jussi Peltola wrote: On Thu, Feb 21, 2008 at 11:22:25PM +0200, [EMAIL PROTECTED] wrote: For instance 'ggrep -r ...' instead of 'grep -r ...' to search recursively with gnu grep (a worthless feature imho). Displaying the name of the file and the

Re: There's something about OpenBSD...

2008-02-21 Thread Edwards, David (JTS)
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jussi Peltola Sent: Friday, 22 February 2008 8:39 AM To: misc@openbsd.org Subject: Re: There's something about OpenBSD... On Thu, Feb 21, 2008 at 11:22:25PM +0200, [EMAIL PROTECTED] wrote

Re: There's something about OpenBSD...

2008-02-21 Thread Douglas A. Tutty
On Thu, Feb 21, 2008 at 07:26:29PM -0500, Jason Dixon wrote: On Thu, Feb 21, 2008 at 06:15:32PM -0500, Nick Bender wrote: On Thu, Feb 21, 2008 at 5:08 PM, Jussi Peltola [EMAIL PROTECTED] wrote: Never used -r so I'm not sure what the output looks like but how about: find . -type f

Re: There's something about OpenBSD...

2008-02-21 Thread Todd Alan Smith
On Thu, Feb 21, 2008 at 6:26 PM, Jason Dixon [EMAIL PROTECTED] wrote: On Thu, Feb 21, 2008 at 06:15:32PM -0500, Nick Bender wrote: On Thu, Feb 21, 2008 at 5:08 PM, Jussi Peltola [EMAIL PROTECTED] wrote: Displaying the name of the file and the matched line nicely like grep -r does