单纯连接两个文件 (把一个文件内容追加到另一个文件)
cat file1.txt file2.txt >new.txt
平行合并(两个文件每行对应拼接):
paste file1.txt file2.txt >new.txt