I have a set of JSON objects that each contain one unique key:value pair (that is, there are no duplicate keys). I want to combine all of these into a single object using jq
.
I want this:
{
"Key1": "Value1"
}
{
"Key2": "Value2"
}
{
"Key3": "Value3"
}
...
to become this:
{
"Key1": "Value1",
"Key2": "Value2",
"Key3": "Value3",
...
}