bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

document sort -uf[r]


From: jidanni
Subject: document sort -uf[r]
Date: Mon, 12 Jan 2009 10:31:03 +0800

Regarding sort:
`-f'
`--ignore-case'
     Fold lowercase characters into the equivalent uppercase characters
     when comparing so that, for example, `b' and `B' sort as equal.
     The `LC_CTYPE' locale determines character types.

OK, but also document this:
$ echo -e 'A\na'|sort -uf
A
$ echo -e 'A\na'|sort -ufr
A
$ echo -e 'A\na'|sort -urf
A
The man page doesn't say what to expect.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]