I have a csv file containing
a,b,c,d,e,f,"gg,hh,ii",j,k
I have been trying to use something like
awk -F ',' '{print $7}'
iam getting
"gg
but i need the result as
gg,hh,ii
can i get it done with a simple one line awk or sed command without any parsers
please help