I’ve got a JSON data look like this (Notice that it’s a list of individual objects without wrapping by []
) . I would like to walk each object using jq but it is not an array of objects. So how can I walk to each object without fixing the data to be a valid array of objects? Thanks!
{
"a": 1,
"b": 2
}
{
"c": 3,
"d": 4
}