|
|
|
|
|
by chithanh
266 days ago
|
|
The sorting order is only defined between strings of the same locale, not between strings of different locales. You can specify the sorting order per command like LC_COLLATE="tr_TR.utf8" ls if it differs from your system or user locale. An alternative is to first transliterate the strings to ASCII and then sort them (but this does not preserve the sorting order of non-latin scripts). |
|