I was wondering how to combine two csv files with one column into one file, where the resulting file will contain two columns.
file1.csv
first_name
chris
ben
canister
file2.csv
last_name
smith
white
perry
Result.csv
first_name, last_name
Chris,
Ben Smith , white
canister, pear
thank
source
share