I am trying to paste 3 CSVs together and it seems to work for the first 2 and then the 3rd pastes overtop of the 1st CSV.
csv.csv
1,Thu-Aug-19-21:54:38-2021,125094,car
tsv.csv
2,4856,PC7C042B7
fixed_width_data.csv
PTE,VC96
What I've tried:
paste -d ',' csv.csv tsv.csv fixed_width_data.csv > ed.csv
I get this:
,PTE,VC96-19-21:54:38-2021,125094,car,2,4856,PC7C042B7
Can anyone tell me what I'm doing wrong? It is pasting the 3rd file over top of the data from the first.