我有一个CSV文件,例如
Brand,Type,Color Porsche,Sport,Red BMW,Coupe,Blue
我想加上引号使它像:
"Brand","Type","Color" "Porsche","Sport","Red" "BMW","Coupe","Blue"
最快的方法是什么?我将在cronjob中实现它。
使用sed:
sed -e 's/^\|$/"/g' -e 's/,/","/g' input