I am trying to parse a CSV file in UNIX using AWK or shell scripting. But I am facing a issue here. If the data is within quotes(",") then I want to replace the comma(,) with a blank space and remove the quotes. Also , such data might occur multiple times in one single record.
例如:考虑这个输入
20,曼彻斯特,“巴克莱,联赛”,xyz,123,“95,一些,数据”,
输出应该如下
20,曼彻斯特,巴克莱联赛,xyz,123,95一些数据,
How can it be done b basic UNIX commands or scripting. Please help me on this ....