Converting CSV to JSON in bash

前端 未结 9 2032
梦毁少年i
梦毁少年i 2021-02-04 03:12

Trying to convert a CSV file into a JSON

Here is two sample lines :

-21.3214077;55.4851413;Ruizia cordata
-21.3213078;55.4849803;Cossinia pinnata
         


        
9条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-04 03:35

    John Kerl's Miller tool has this built-in:

    mlr --c2j --jlistwrap cat INPUT.csv > OUTPUT.json
    

提交回复
热议问题