Created
January 3, 2014 04:31
-
-
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...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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