> 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)
     '

-- 
        Viktor.

Reply via email to