Created
February 9, 2015 12:42
-
-
Save dwaxe/0ef01b304a0e2163ed43 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Compiles .txt files into a single .txt in the correct date order | |
# File name format: [Month][Day].txt | |
# File content should end in a newline | |
cat December[1-3][1-9].txt > all.txt | |
cat January[1-9].txt >> all.txt | |
cat January[1-3][1-9].txt >> all.txt | |
cat February[1-9].txt >> all.txt | |
# cat February[1-2][1-9].txt >> all.txt | |
# cat March[1-9].txt >> all.txt | |
# cat March[1-3][1-9].txt >> all.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment