Re: [OT] Is od broken?

2008-06-13 Thread Jim Meyering
Eric Blake <[EMAIL PROTECTED]> wrote: ... > But POSIX is clear that FLT_DIG is rounded down (unless your radix is a power > of 10), to cover the decimal-binary-decimal round trip, whereas DECIMAL_DIG is > rounded up, to cover the binary-decimal-binary round trip. In the case of od, > we want the a

Re: coreutils 6.12 test-suite failure

2008-06-13 Thread Jim Meyering
Jim Meyering <[EMAIL PROTECTED]> wrote: > Jarod Wilson <[EMAIL PROTECTED]> wrote: >> Hey there, >> >> Trying to reproduce a problem we (Red Hat) are seeing when building coreutils >> 6.12 in our build system[*], and I ran into a slightly different (and 100% >> reproduceable so far) test-suite failu

Re: coreutils 6.12 test-suite failure

2008-06-13 Thread Jim Meyering
Jarod Wilson <[EMAIL PROTECTED]> wrote: > Hey there, > > Trying to reproduce a problem we (Red Hat) are seeing when building coreutils > 6.12 in our build system[*], and I ran into a slightly different (and 100% > reproduceable so far) test-suite failure. Log file attached. Build is done on > a sys

RE: problems with su over ssl in RHES V5.2

2008-06-13 Thread Licause, Al
Hello, We have found some odd behviour with su in the V5.2 release of Redhat's Enterprise server. If you attempt to su - usernameor su username with an ldapuser such that the connection between the ldap client and ldap server is running over ssl, su simply brings you back to the shell prom

coreutils 6.12 test-suite failure

2008-06-13 Thread Jarod Wilson
Hey there, Trying to reproduce a problem we (Red Hat) are seeing when building coreutils 6.12 in our build system[*], and I ran into a slightly different (and 100% reproduceable so far) test-suite failure. Log file attached. Build is done on a system with a 2.6.18-based kernel (RHEL5.2), buildi

Re: Multi-threading in sort(or core-utils)

2008-06-13 Thread Pádraig Brady
Bo Borgerson wrote: > [EMAIL PROTECTED] wrote: >> Hello >> Few minutes ago i used sort -u for sorting big file(236 Mb). I have 2 core >> cpu(core 2 duo), but i found that sort use only one cpu(work in one thread). >> I think it is good idea to make option(or by default) for sorting in threads >>

Re: solaris 8 fails to build due to `tr'

2008-06-13 Thread Jim Meyering
Denis Excoffier <[EMAIL PROTECTED]> wrote: > On Wed, Jun 11, 2008 at 02:18:03PM +0200, Jim Meyering wrote: >>> >>> perl -ni -e '/^tmpdir/ and print "set -x\n"; print' \ >>> gnulib-tests/test-vc-list-files-*.sh >>> make check -C gnulib-tests \ >>> TESTS='test-vc-list-files-git.sh test-vc

Re: Multi-threading in sort(or core-utils)

2008-06-13 Thread Bo Borgerson
[EMAIL PROTECTED] wrote: > Hello > Few minutes ago i used sort -u for sorting big file(236 Mb). I have 2 core > cpu(core 2 duo), but i found that sort use only one cpu(work in one thread). > I think it is good idea to make option(or by default) for sorting in threads > to increase performance on

Multi-threading in sort(or core-utils)

2008-06-13 Thread rilium
Hello Few minutes ago i used sort -u for sorting big file(236 Mb). I have 2 core cpu(core 2 duo), but i found that sort use only one cpu(work in one thread). I think it is good idea to make option(or by default) for sorting in threads to increase performance on systems that might execute more th

Re: unable to remove duplicate lines from the attached file

2008-06-13 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Joseph Butler on 6/13/2008 6:37 AM: | | Hello Tech Support: We're not really paid tech support, just volunteers... | For some reason, I'm unable to remove duplicate lines using the uniq utility. Reread 'uniq --help', particularly this

Re: unable to remove duplicate lines from the attached file

2008-06-13 Thread Pádraig Brady
Joseph Butler wrote: > > Hello Tech Support: > > For some reason, I'm unable to remove duplicate lines using the uniq utility. > > Any solution to this issue would be appreciated. Trailing whitespace: sed 's/[ \r]*$//' test03 | sort | uniq -d ___ B