Hi, It seems that "café" should be sorted before "caff" in Unicode.
https://github.com/jtauber/pyuca But `sort` does not do so. $ printf '%s\n' cafe caff café | LC_ALL=UTF8 sort cafe caff café $ printf '%s\n' cafe caff café | LC_ALL=en_US.UTF-8 sort cafe caff café How to make `sort` sort according to Unicode order? Thanks. -- Regards, Peng
