On Tue, 2018-05-29 at 13:32 -0400, Viktor Dukhovni wrote:
> > On May 29, 2018, at 12:28 PM, Jim P. <jim@postmaster.ninja> wrote:
> > 
> > FWIW, I had to use this:
> > 
> > comm -1 -2 <(postconf -n|sort) <(postconf -d|sort)
> 
> That'd only be needed if you have a funny collation locale.
> Try:
> 
>      env -i "PATH=$PATH" LANG=C LC_COLLATE=C bash -c '
>          comm -1 -2 <(postconf -n) <(postconf -d)
>      '
> 

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)

-Jim P. 

Reply via email to