e.g.
~cat ./temp
1,2,"3,1,2",4,5,"A,2,Csd",xx,a,"s,s,,",,,
After shell parse i want this output:
~parse.sh ./temp
1,2,"3_1_2",4,5,"A_2_Csd",xx,a,"s_s__",,,
i.e.
replace all the ,
with _
in the "..."
scope.
Any shell solution will be welcome, awk/sed/perl/other smart thing you can think.
snippet code the shorter the better