Use jq to remove key/value pairs based on other file
I have 2 json files containing translations for my app: en-US.json: { "car": "car", "bike": "bike", "tree": "tree", } nl-NL.json: { "car": "auto", "bike": "fiets", "tree": "boom", "house": "huis" } As you can see, I have removed the house from the en-US.json file (among many others). How could I remove the same house entry from… Read More Use jq to remove key/value pairs based on other file