[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] sort: EOL included in final field
From: |
Jim Meyering |
Subject: |
Re: [PATCH] sort: EOL included in final field |
Date: |
10 Jun 2001 10:48:06 +0200 |
User-agent: |
Gnus/5.090003 (Oort Gnus v0.03) Emacs/21.0.104 |
Thanks for the report, but which version of sort are you using
and how/with-what-compiler was it compiled?
With 2.0(from debian) and with 2.0.14, I get this:
$ printf "a\na b\n"|sort -c -k1,1 && echo ok
ok
Herbert Xu <address@hidden> wrote:
| The final newline is included in the final field when fields are specified
| through -k. Here is a test case:
|
| $ sort -c -k 1,1 <<eof
| > a
| > a b
| > eof
| sort: -:2: disorder: a b
|
| The changelog says:
...