Re: [patch] -H flag for grep.

2011-02-21 Thread Andres Perera
On Mon, Feb 21, 2011 at 7:01 PM, Philip Guenther wrote: > On Mon, Feb 21, 2011 at 2:30 PM, Fred Crowson wrote: >> On 02/21/11 15:54, Alexander Schrijver wrote: > ... >>> grep(1) only prints the filename when it receives more then 1 filename as >>> arguments. Thus, when you do this: >>> >>> $ find

Re: allow "underruns" on mpii controllers

2011-02-21 Thread David Gwynne
On 22/02/2011, at 3:44 AM, Miod Vallat wrote: >> we do some scsi ops where we give a device a large buffer and expect >> it to only fill part of it because we dont know how big that part >> will be. >> >> the underrun handling in mpii always caused this to fail, so devices >> relying on this didnt

Re: [patch] -H flag for grep.

2011-02-21 Thread Philip Guenther
On Mon, Feb 21, 2011 at 2:30 PM, Fred Crowson wrote: > On 02/21/11 15:54, Alexander Schrijver wrote: ... >> grep(1) only prints the filename when it receives more then 1 filename as >> arguments. Thus, when you do this: >> >> $ find . -name '*.c' -exec grep bla {} \; >> >> It doesn't print the fil

Re: [patch] -H flag for grep.

2011-02-21 Thread Fred Crowson
On 02/21/11 15:54, Alexander Schrijver wrote: On Mon, Feb 21, 2011 at 01:34:51PM +0100, Pascal Stumpf wrote: Implement a -H flag for grep, useful for combining e.g. find and grep. -o used to do this but has been removed. (See the commit logs for the reason, i forgot it) grep(1) only prints th

Re: [patch] -H flag for grep.

2011-02-21 Thread Ted Unangst
On Mon, Feb 21, 2011 at 3:46 PM, Mark Kettenis wrote: > Also, -H is non-standard AFIK, and we try to avoid adding non-standard > options to our tools. Theo has objected to changes like this before. > So I don't think this should go in without giving him a chance to > comment. Yes, but let's be h

Re: [patch] -H flag for grep.

2011-02-21 Thread Pascal Stumpf
On Mon, Feb 21, 2011 at 04:20:24PM -0500, Ted Unangst wrote: > On Mon, Feb 21, 2011 at 3:46 PM, Mark Kettenis > wrote: > > Also, -H is non-standard AFIK, and we try to avoid adding non-standard > > options to our tools. Theo has objected to changes like this before. > > So I don't think this sho

Re: [patch] -H flag for grep.

2011-02-21 Thread Mark Kettenis
> Date: Mon, 21 Feb 2011 14:29:37 -0500 > From: Ted Unangst > > On Mon, Feb 21, 2011 at 7:34 AM, Pascal Stumpf wrote: > > Implement a -H flag for grep, useful for combining e.g. find and grep. > > > > Can anyone commit it? > > I think I can do so tonight, unless someone has a serious problem wi

Re: [patch] -H flag for grep.

2011-02-21 Thread Ted Unangst
On Mon, Feb 21, 2011 at 7:34 AM, Pascal Stumpf wrote: > Implement a -H flag for grep, useful for combining e.g. find and grep. > > Can anyone commit it? I think I can do so tonight, unless someone has a serious problem with it.

Compresores

2011-02-21 Thread TBX
$ 660 Pesos

Re: [patch] -H flag for grep.

2011-02-21 Thread Dan Harnett
On Mon, Feb 21, 2011 at 04:54:40PM +0100, Alexander Schrijver wrote: > On Mon, Feb 21, 2011 at 01:34:51PM +0100, Pascal Stumpf wrote: > grep(1) only prints the filename when it receives more then 1 filename as > arguments. Thus, when you do this: > > $ find . -name '*.c' -exec grep bla {} \; > >

Re: [patch] -H flag for grep.

2011-02-21 Thread Todd C. Miller
On Mon, 21 Feb 2011 13:34:51 +0100, Pascal Stumpf wrote: > Implement a -H flag for grep, useful for combining e.g. find and grep. Seems reasonable to me given that GNU grep implements -H and we already have the -h flag. - todd

Re: allow "underruns" on mpii controllers

2011-02-21 Thread Miod Vallat
> we do some scsi ops where we give a device a large buffer and expect > it to only fill part of it because we dont know how big that part > will be. > > the underrun handling in mpii always caused this to fail, so devices > relying on this didnt work as expected (eg, ses). > > according to the s

Re: [patch] -H flag for grep.

2011-02-21 Thread Pascal Stumpf
On Mon, Feb 21, 2011 at 04:54:40PM +0100, Alexander Schrijver wrote: > On Mon, Feb 21, 2011 at 01:34:51PM +0100, Pascal Stumpf wrote: > > Implement a -H flag for grep, useful for combining e.g. find and grep. > > -o used to do this but has been removed. (See the commit logs for the reason, > i >

Re: [patch] -H flag for grep.

2011-02-21 Thread Alexander Schrijver
On Mon, Feb 21, 2011 at 05:05:56PM +0100, Paul de Weerd wrote: > It does not when there's only one file matching the find-experssion > (which is unclear when using find | xargs grep). > > [weerd@despair] $ find . -name pi.c > ./pi.c > [weerd@despair] $ find . -name pi.c | xargs grep main > main(in

Sony y Panasonic Digitales

2011-02-21 Thread DigitalesNet
USD495 Sony DSC-HX1 Cámara digital compacta, visor electrónico / Sensor CMOS Exmor de 9,10 MP efectivos / Objetivo (en 35 mm) 28,0 -

Re: [patch] -H flag for grep.

2011-02-21 Thread Paul de Weerd
On Mon, Feb 21, 2011 at 04:54:40PM +0100, Alexander Schrijver wrote: | On Mon, Feb 21, 2011 at 01:34:51PM +0100, Pascal Stumpf wrote: | > Implement a -H flag for grep, useful for combining e.g. find and grep. | | -o used to do this but has been removed. (See the commit logs for the reason, i | fo

Re: [patch] -H flag for grep.

2011-02-21 Thread Alexander Schrijver
On Mon, Feb 21, 2011 at 01:34:51PM +0100, Pascal Stumpf wrote: > Implement a -H flag for grep, useful for combining e.g. find and grep. -o used to do this but has been removed. (See the commit logs for the reason, i forgot it) grep(1) only prints the filename when it receives more then 1 filename

Re: allow "underruns" on mpii controllers

2011-02-21 Thread Kenneth R Westerback
On Mon, Feb 21, 2011 at 11:05:40PM +1000, David Gwynne wrote: > we do some scsi ops where we give a device a large buffer and expect > it to only fill part of it because we dont know how big that part > will be. > > the underrun handling in mpii always caused this to fail, so devices > relying on

Re: [patch] -H flag for grep.

2011-02-21 Thread Bret Lambert
find / -name my\*balls | xargs grep -e batman -e robocop On Mon, Feb 21, 2011 at 1:34 PM, Pascal Stumpf wrote: > Implement a -H flag for grep, useful for combining e.g. find and grep. > > Can anyone commit it? > > Index: grep.1 > ===

allow "underruns" on mpii controllers

2011-02-21 Thread David Gwynne
we do some scsi ops where we give a device a large buffer and expect it to only fill part of it because we dont know how big that part will be. the underrun handling in mpii always caused this to fail, so devices relying on this didnt work as expected (eg, ses). according to the solaris driver we

Re: [patch] -H flag for grep.

2011-02-21 Thread Pascal Stumpf
On Mon, Feb 21, 2011 at 01:38:41PM +0100, Bret Lambert wrote: > find / -name my\*balls | xargs grep -e batman -e robocop > Lol. I donbt have CVS access. ;)

[patch] -H flag for grep.

2011-02-21 Thread Pascal Stumpf
Implement a -H flag for grep, useful for combining e.g. find and grep. Can anyone commit it? Index: grep.1 === RCS file: /cvs/src/usr.bin/grep/grep.1,v retrieving revision 1.39 diff -u -r1.39 grep.1 --- grep.1 3 Sep 2010 11:09:2

Re: 3 small net80211 fixes

2011-02-21 Thread Stefan Sperling
On Mon, Feb 21, 2011 at 12:57:08PM +0100, Damien Bergamini wrote: > | Index: ieee80211_pae_output.c > | === > | RCS file: /cvs/src/sys/net80211/ieee80211_pae_output.c,v > | retrieving revision 1.16 > | diff -u -p -r1.16 ieee80211_pae_o

Re: 3 small net80211 fixes

2011-02-21 Thread Damien Bergamini
| Index: ieee80211_input.c | === | RCS file: /cvs/src/sys/net80211/ieee80211_input.c,v | retrieving revision 1.116 | diff -u -p -r1.116 ieee80211_input.c | --- ieee80211_input.c 7 Jun 2010 16:51:22 - 1.116 | +++ ieee80211_inp

Re: mos(4) broadcast fix

2011-02-21 Thread Stefan Sperling
On Mon, Feb 21, 2011 at 12:03:43PM +0100, Claudio Jeker wrote: > On Sun, Feb 20, 2011 at 10:59:48PM +0100, Stefan Sperling wrote: > > mos(4) doesn't set IFF_BROADCAST, which prevents hostapd(8) from using it. > > hostapd tries a SIOCGIFBRDADDR ioctl which fails with EINVAL in > > netinet/in.c: > >

Re: mos(4) broadcast fix

2011-02-21 Thread Claudio Jeker
On Sun, Feb 20, 2011 at 10:59:48PM +0100, Stefan Sperling wrote: > mos(4) doesn't set IFF_BROADCAST, which prevents hostapd(8) from using it. > hostapd tries a SIOCGIFBRDADDR ioctl which fails with EINVAL in netinet/in.c: > > case SIOCGIFBRDADDR: > if ((ifp->if_flags & IFF_

Fw: Segue em anexo relatorio orcamento.

2011-02-21 Thread Silvia Nogueira
[IMAGE] 1 anexos Relatorio-orcamento.pdf (144,1 kb) Segue em anexo o relatorio para orC'amento. tenha um bom dia. __

Re: Syslogd: Adding log sockets that are only writeable by a single group

2011-02-21 Thread Joachim Schipper
On Sat, Feb 19, 2011 at 10:17:21PM -0500, Eric wrote: > On Sun, Feb 13, 2011 at 8:45 PM, Philip Guenther wrote: > > On Sun, Feb 13, 2011 at 8:27 AM, Eric wrote: > >> On (...) Philip Guenther wrote: > >>> (...) if you're intending that this should affect all > >>> programs without any changes to