file1.json
[
{
"a": "a",
"b": "b"
},
{
"a": "a",
"b": "b"
}
]
file2.json
[
{
"c": "c"
},
{
"c": "c"
}
]
desired output: file3.json
[
{
"a": "a",
"b": "b",
"c": "c"
},
{
"a": "a",
"b": "b",
"c": "c"
}
]