Comments on: Merge CSV files from a command prompt https://dfarq.homeip.net/how-to-quickly-merge-csv-files-from-a-command-line/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-quickly-merge-csv-files-from-a-command-line David L. Farquhar on technology old and new, computer security, and more Mon, 19 Nov 2018 17:09:37 +0000 hourly 1 By: John Dominik https://dfarq.homeip.net/how-to-quickly-merge-csv-files-from-a-command-line/#comment-34758 Fri, 31 Jan 2014 19:03:06 +0000 https://dfarq.homeip.net/?p=6978#comment-34758 Er, Find /v. I forgot I wrote a batch file called “filter” that does it for me. Sigh…

]]>
By: John Dominik https://dfarq.homeip.net/how-to-quickly-merge-csv-files-from-a-command-line/#comment-34757 Fri, 31 Jan 2014 19:01:27 +0000 https://dfarq.homeip.net/?p=6978#comment-34757 I probably would have used Type and redirect, and after the first line, filtered the header:

Type file1.csv > master.csv
type file2.csv | filter “header” >> master.csv
type file3.csv | filter “header” >> master.csv

But then I’m old skool. 😉

]]>