bug-coreutils@gnu.org mirror (unofficial)
 help / color / mirror / Atom feed
From: Pl B <platon.new10@gmail.com>
To: 65342@debbugs.gnu.org
Subject: bug#65342: In Ubuntu 22.04 (unlike 20.04), sorting doesn't work properly
Date: Wed, 16 Aug 2023 18:55:05 +0300	[thread overview]
Message-ID: <CAHNwqZ+1PwBZCCg1E7+C3B9kro9R6ZK2xfJ6dzJO4F06z9QGxA@mail.gmail.com> (raw)

Source file:
rs1009150173,100202244031
rs1009150172,13853975996
rs1009150170,54321425962
rs1009150171,11378896079
rs1009150,171582090052

Ubuntu 20.04.5:
sort -t ',' /path/to/rs_srt_exp.txt
rs1009150,171582090052
rs1009150170,54321425962
rs1009150171,11378896079
rs1009150172,13853975996
rs1009150173,100202244031
(correct order)

elementary OS 7 (Ubuntu 22.04.3):
sort -t ',' /path/to/rs_srt_exp.txt
rs1009150170,54321425962
rs1009150171,11378896079
rs1009150,171582090052
rs1009150172,13853975996
rs1009150173,100202244031
(wrong order)

Python 3.10.12:
with open('/path/to/rs_srt_exp.txt') as src_file_opened:
    for elem in sorted(map(lambda line: line.rstrip().split(','),
src_file_opened)):
        print(elem)
['rs1009150', '171582090052']
['rs1009150170', '54321425962']
['rs1009150171', '11378896079']
['rs1009150172', '13853975996']
['rs1009150173', '100202244031']
(correct order)




             reply	other threads:[~2023-08-16 17:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-16 15:55 Pl B [this message]
2023-08-16 18:07 ` bug#65342: In Ubuntu 22.04 (unlike 20.04), sorting doesn't work properly Pádraig Brady

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://lists.gnu.org/mailman/listinfo/bug-coreutils

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAHNwqZ+1PwBZCCg1E7+C3B9kro9R6ZK2xfJ6dzJO4F06z9QGxA@mail.gmail.com \
    --to=platon.new10@gmail.com \
    --cc=65342@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).