All the CSV to TSV tutorials are suggesting a simple:
tr ',' '\t'
though some CSVs look like this:
1,310,"IntAct,PINA"
in which case I would like to keep "IntAct,PINA"
:
1 310 "IntAct,PINA"
How could I parameterize the tr
command (or sed
, etc.) in order to do that?
I appreciate any suggestions.