I have 2 files, each file has one column with several rows, and the rows of each file are the same. How can I combine the columns of 2 files together so that the final result file has two columns from file1 and file2?
For example, file1 is:
1 2 3
and file2 is:
a b c
and expected result:
1 a 2 b 3 c
kiluer2005
source share