Skip to content

Instantly share code, notes, and snippets.

@AvverbioPronome
Created April 19, 2013 16:30
Show Gist options
  • Save AvverbioPronome/5421474 to your computer and use it in GitHub Desktop.
Save AvverbioPronome/5421474 to your computer and use it in GitHub Desktop.
#/bin/bash
for file in *.csv
do
cat $file | perl -pe 's/(\d+),(\d+,?)/$1.$2 /g' | perl -pe 's/, /\t/' > ${file:0:4}.tsv
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment