Json – in jq, how to merge an array of object into 1 object with an array of values
Let's say I have this json: [ { "first": 12355, "second": "abc" }, { "first": 89010, "second": "def" }, { "first": 23423, "second": "hij" }, { "first": 23456, "second": "klm" }, { "first": 11111, "second": "nop" } ] And I…