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
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
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
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
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
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
> 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
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.
$
660 Pesos
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 {} \;
>
>
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
> 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
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
>
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
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 -
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
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
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
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
> ===
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
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. ;)
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
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
| 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
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:
> >
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_
[IMAGE] 1 anexos
Relatorio-orcamento.pdf (144,1 kb)
Segue em anexo o relatorio para orC'amento.
tenha um bom dia.
__
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
28 matches
Mail list logo