I would like to create a windows batch file to combine a folder full of CSV's into one CSV file but by column, not at the end.
file1.csv
A, B
1, 2
3, 4
5, 6
...
fileN.csv
C, D
1, 2
3, 4
5, 6
results.csv
A, B, C, D
1, 2, 1, 2
3, 4, 3, 4
5, 6, 5, 6
All of the examples I have seen combine 2 files with a defined name, or a simple copy one after the other. I cannot find how to copy by column!