|
|
|
|
|
by avip
2787 days ago
|
|
Not merge, but jq can diff, and it can also do a consistent dump (jq -cS) for you. Edit: to clarify, jq -S does deep keys sorting. $ echo '{"z":{"b": "second", "a": "first"}, "x": 4, "y": 7}' | jq -S
{
"x": 4,
"y": 7,
"z": {
"a": "first",
"b": "second"
}
}
|
|