On Tue, 2018-05-29 at 13:57 -0400, Viktor Dukhovni wrote: > > On May 29, 2018, at 1:54 PM, Jim P. <jim@postmaster.ninja> wrote: > > > > It's more of a language "feature". This works: > > > > LANG=C comm -1 -2 <(postconf -n) <(postconf -d) > > > > this doesn't: > > > > LANG=en_US comm -1 -2 <(postconf -n) <(postconf -d) > > The collation rules for "en_US" are abominable. I always set: > > LC_CTYPE=en_US.UTF-8 LANG=C > > but if you just want sensible collation, with everything else > using "en_US", you can just set LC_COLLATE=C.
Ahh, sounds good. Thanks for that. -Jim P.