Skip to content

Instantly share code, notes, and snippets.

@matthewpoer
Created January 3, 2014 04:31
Show Gist options
  • Save matthewpoer/8232765 to your computer and use it in GitHub Desktop.
Save matthewpoer/8232765 to your computer and use it in GitHub Desktop.
Ever receive a data set that's split into multiple files? And you just need one damn CSV file...
for f in *.csv
do
cat $f >> wrap.csv
done
echo 'done'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment