On 04/03/10 06:01, Joey Degges wrote:
Hello,
Matt (cc'd, not on list) and I have developed a patch that parallelizes sort
using pthreads. The threading approach taken here is to break up input files
into groups based on physical device and sort each of those groups in
parallel.
This allows for s
Jim Meyering wrote:
> Mads Kiilerich wrote:
...
>> be aware that LANGUAGE trumps:
>>
>> $ LC_ALL=fr_FR.UTF-8 LANGUAGE=da_DK /bin/cat no-such
>> /bin/cat: no-such: Ingen sådan fil eller filkatalog
>>
>> $ LANGUAGE=da_DK.UTF-8 LC_ALL=fr_FR.UTF-8 LANG=C /sbin/parted
>> WARNING: You are not superuser.
Hi Padraig,
Actually we're in the same class. They were assigned external sort, my group
worked on internal sort. Our patch submission's imminent, looks like you guys
are gonna be busy with code reviews :-)
- Original Message
> From: Pádraig Brady
> To: Joey Degges
> Cc: Report b
On 04/03/10 09:55, Chen Guo wrote:
Hi Padraig,
Actually we're in the same class. They were assigned external sort, my
group
worked on internal sort. Our patch submission's imminent, looks like you guys
are gonna be busy with code reviews :-)
OK thanks :)
If we do see a benefit from using
commit a7b4fa01ddde3f09eb642cb6378e16522917f8e0
Author: Pádraig Brady
Date: Thu Mar 4 10:54:21 2010 +
maint: rename the si_present variable in sort to iec_present
* src/sort.c: The units containing 'i' are actually IEC not SI.
diff --git a/src/sort.c b/src/sort.c
index 02b2351..5
2010/3/4 Pádraig Brady
> On 04/03/10 09:55, Chen Guo wrote:
>
>> Hi Padraig,
>> Actually we're in the same class. They were assigned external sort, my
>> group
>> worked on internal sort. Our patch submission's imminent, looks like you
>> guys
>> are gonna be busy with code reviews :-)
>>
>
>
Pádraig Brady wrote:
>
> maint: rename the si_present variable in sort to iec_present
>
> * src/sort.c: The units containing 'i' are actually IEC not SI.
>
> diff --git a/src/sort.c b/src/sort.c
> index 02b2351..5a937dd 100644
> --- a/src/sort.c
> +++ b/src/sort.c
> @@ -181,7 +181,7 @@ stru
On 04/03/10 06:01, Joey Degges wrote:
Hello,
Matt (cc'd, not on list) and I have developed a patch that parallelizes sort
using pthreads. The threading approach taken here is to break up input files
into groups based on physical device and sort each of those groups in
parallel.
This allows for s
Hi Padraig,
The documentations coming in my patch, since we're both using the same
--threads option. I haven't put any examples in yet, but I suppose I should.
Thanks for the heads up.
Why would there be a need to switch to processes? There's more memory
and communication overhead. The onl
On 04/03/10 12:12, Chen Guo wrote:
Hi Padraig,
The documentations coming in my patch, since we're both using the same
--threads option. I haven't put any examples in yet, but I suppose I should.
Thanks for the heads up.
Why would there be a need to switch to processes? There's more mem
According to Martin Walch on 3/3/2010 3:03 PM:
> Hello list,
>
> sorry if this is not the appropriate place for the following suggestion, but
> I
> do not which place would be bette.
>
> I think autocompletion in shells (that is usually triggered with tab) is a
> great feature which I do not w
Begin forwarded message:
Date: Wed, 3 Mar 2010 13:58:59 -0500
From: Derick Centeno
To: Eric Blake
Subject: Re: side-effect implementing the mv command
On Wed, 03 Mar 2010 08:08:55 -0700
Eric Blake wrote:
> [please keep replies on the list, so that others may chime in]
>
> According to Der
Hi Derick,
According to Derick Centeno on 3/4/2010 3:38 AM:
>
>> [please keep replies on the list, so that others may chime in]
Thanks for adding the list back in.
>> I asked for 'ls -l' so we could see full details, such as which files are
>> symlinks. According to your screenshot, you happen
Hello,
I am working on a patch that adds a FreeBSD style directory option, as
suggested in the rm.c source code. The --directory (-d) option will
delete empty directories, as well as the usual files, passed via
command line. I am now in the documentation stages and nearing
completion (all the funct
According to William Plusnick on 3/4/2010 9:02 AM:
> Hello,
> I am working on a patch that adds a FreeBSD style directory option, as
> suggested in the rm.c source code. The --directory (-d) option will
> delete empty directories, as well as the usual files, passed via
> command line.
Thanks for d
Try as you might, there is no way you are going to sort by this field,
$ LC_CTYPE=zh_TW.UTF-8 w3m -dump \
http://www.tcb-bank.com.tw/tcb/servicesloc/atm_location/taichung_county_atm.htm
|
perl -anlwe 'print $F[4] if exists $F[4]'|LC_CTYPE=C sort
without ripping it out of the table first using
On (info "(coreutils) cut invocation") please add:
cut has no way to specify a group of blanks as a field demarcator.
If you want that, use perl -a. Also use perl's split if you want
regexp demarcators, etc.
If that is indeed the case.
2010/3/4 Pádraig Brady
> On 04/03/10 06:01, Joey Degges wrote:
>
>> Hello,
>>
>> Matt (cc'd, not on list) and I have developed a patch that parallelizes
>> sort
>> using pthreads. The threading approach taken here is to break up input
>> files
>> into groups based on physical device and sort each
On 04/03/10 19:59, jida...@jidanni.org wrote:
Try as you might, there is no way you are going to sort by this field,
$ LC_CTYPE=zh_TW.UTF-8 w3m -dump \
http://www.tcb-bank.com.tw/tcb/servicesloc/atm_location/taichung_county_atm.htm
|
perl -anlwe 'print $F[4] if exists $F[4]'|LC_CTYPE=C so
On 05/03/10 00:39, Joey Degges wrote:
2010/3/4 Pádraig Brady mailto:p...@draigbrady.com>>
Have you considered the seek characteristics of SSDs
and how they might affect things (with consideration
that mechanical disks will be replaced by SSDs quite quickly).
There still would be
On 04/03/10 20:05, jida...@jidanni.org wrote:
On (info "(coreutils) cut invocation") please add:
cut has no way to specify a group of blanks as a field demarcator.
If you want that, use perl -a. Also use perl's split if you want
regexp demarcators, etc.
If that is indeed the case.
A
Thanks. I see I neglected the -b.
On the info page in the `--field-separator=SEPARATOR' discussion, do
mention the effects of -b on ' foo' etc.
PB> $ LC_CTYPE=C sort --debug -sb -k5,5 < taichung_county_atm.htm
(Use .txt, not .htms in examples.)
Anyway, your --debug stuff would be clearer with just
Hi All,
I'm packaging coreutils for OpenCSW[1] to replace our (now ancient)
versions of {sh,file,text}utils and have hit a few test failures I'm
hoping someone can help me solve.
We're still targeting solaris 8[2] for one more release, and this is
where the results were gathered (sparc in this c
According to jida...@jidanni.org on 3/4/2010 7:11 PM:
> Thanks. I see I neglected the -b.
> On the info page in the `--field-separator=SEPARATOR' discussion, do
> mention the effects of -b on ' foo' etc.
> PB> $ LC_CTYPE=C sort --debug -sb -k5,5 < taichung_county_atm.htm
> (Use .txt, not .htms in e
24 matches
Mail list logo