Skip to content

Instantly share code, notes, and snippets.

@bds
Created October 6, 2013 16:01
Show Gist options
  • Save bds/6855724 to your computer and use it in GitHub Desktop.
Save bds/6855724 to your computer and use it in GitHub Desktop.
Send a directory of CSV's through through an Awk script
$ for file in ./data/iraq_unrest_0*.csv; do awk -F, -f csv_clean.awk $file; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment