myarray=$fruit,$count,$amount >>fruitlist.json
得られた出力:
"Apple",1,"Rs.50"
"Orange",2,"Rs.500"
"Grapes",3,"Rs.100"
期待される出力:
FRUIT QUANTITY PRICE
"Apple" 1 "Rs.50"
"Orange" 2 "Rs.500"
"Grapes" 3 "Rs.100"
答え1
以下を試してください。
column -t -s',' filename
ここで、「,」はファイル区切り文字なので、ファイルに適したものを使用できます。