jq always produces output with newlines/returns between each field:
jq ... foo.json
{
"Name": "stedolan",
"RecordTimestamp": "2021-02-25T05:00:06.740+0000"
}
How can I make the output one line per record so that it looks like:
{"Name":"stedolan","RecordTimestamp":"2021-02-25T05:00:06.740+0000"}