Return to Snippet

Revision: 45113
at April 25, 2011 04:27 by jeremydouglass


Initial Code
for i in *
do
   cat $i | tr ',' '\t' > $i.tmp
   mv $i.tmp $i
done

Initial URL
http://stackoverflow.com/questions/5641378/replace-commas-with-a-tabbed-space-in-many-files

Initial Description


Initial Title
CSV to TSV with tr

Initial Tags
Bash, csv

Initial Language
Bash