linux:逐行合并两文件(paste命令)
存在file1.txt
1 2
3 4
5 6
file2.txt
a b
c d
e f
现希望生成file3.txt
1 2
a b
3 4
c d
5 6
e f
则可以用到如下命令:
paste -d "\n" file1.txt file2.txt > file3.txt
本文来自博客园,作者:橙子牛奶糖(陈文燕),转载请注明原文链接:https://www.cnblogs.com/chenwenyan/p/9634463.html