Knowledgebase
Linux - How to combine multiple .csv files
To combine multiple files with the letters "2014" and "2015" in their name run the following command
cat 2014*.csv 2015*.csv > combined.csv
You may want to take a look at our guide on splitting files into X amount of MB after doing this.