Reputation: 1103
I am new for jq and been trying to get desired output, but without success.
So let's say I have json content like this:
{
"name": "jack",
"tags": ["1.0", "2.0"]
}
And I would like to get ouput like this:
jack:1.0
jack:2.0
How to achieve that with jq?
Upvotes: 0
Views: 84