Saturday, February 2, 2013

How to convert csv to tab delimited linux command line

So this is how I converted csv to tab delimited on the command line:


 cat sports.csv | tr "," "\\t" > sports.txt  

No comments: