* Dirk Stöcker <post...@dstoecker.de>:
On Mon, 28 May 2018, Viktor Dukhovni wrote:
It might be useful, but probably not, to have a version of postconf -n that
showed the default value along sinde the changed value:
join <(postconf -n) <(postconf -d | sed 's/=/(default:/; s/$/)/')
Do you maybe also have a command to show only changed parameters?
Something like postconf -n, but dropping everything identical to default.
You can get changed parameters that are at their default value with:
comm -1 -2 <(postconf -n) <(postconf -d)