How to compare two JSON files, but only the keys, not the values.
My use case: translation files, to make sure the secondary languages had every key in the primary language.
Gron make json “grep-able”.
diff <(gron primary.json | awk -F " = " '{print $1}') <(gron secondary.json | awk -F " = " '{print $1}')