I have 2 csv files and have file1.column1, file1.column2, file2.column1, file2.column2. I would like to have out put like below
File1:
Column1, Column2
1,a
2,b
3,c
File2:
Column1, Column2
x, abc
y, def
z, ghi
Output I am expecting is: File3:
File1.column1, File2.column2
1, abc
2, def
3, ghi