Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用jqして json 配列を csv に変換すると、次のようになります。
jq
$ echo '["a",1,true,"comment"]' | jq '.|@csv' "\"a\",1,true,\"comment\""
値のリストではなく、配列全体が 1 つの文字列になることに驚きました。得るために私は何ができますか
"a",1,true,"comment"
代わりは?