Using jq to convert a json array to csv results in this:
$ echo '["a",1,true,"comment"]' | jq '.|@csv'
"\"a\",1,true,\"comment\""
I am surprised that the entire array becomes one string rather than a list of values. What can I do to get
"a",1,true,"comment"
instead?