I have JSON name values that look like this
{
"key1": true,
"key2": "1.9.2",
"key3": "value3"
}
how can I loop over it using bash and jq so the output will look like this:
export key1=true
export key2="1.9.2"
export key3="value3"
I have JSON name values that look like this
{
"key1": true,
"key2": "1.9.2",
"key3": "value3"
}
how can I loop over it using bash and jq so the output will look like this:
export key1=true
export key2="1.9.2"
export key3="value3"