3/07/2013

Linux merging two files line by line


file1
1
2
3

file2
a
b
c


$ paste file1.list file2.list > file3.list



file3
1 a
2 b
3 c

没有评论: