This seems like a super simple task but I somehow can't figure it out / find an answer online.
I have some piped output in the form of {"key": "value"} and I need to insert it into an existing json file along the lines of:
{
 "existing_key":"value"
}
to get:
{
 "existing_key":"value",
 "key": "value"
}
How do I do this using jq?
