【发布时间】:2014-08-07 17:55:23
【问题描述】:
我有两个文件:F1, F2 as
F1
f1row1
f1row2
..
F2
f2row1
f2row2
..
使用
cat F1 F2 > F3
给予
f1row1
f1row2
..
<end of file1>
f2row1
f2row2
..
<end of file2>
我想创建第三个文件:
F3
f1row1
f2row1
f1row2
f2row2
..
对使用 cat 命令有什么建议吗?我搜索了类似的问题,但没有找到。
非常感谢。
【问题讨论】:
-
..s 是文字行吗? -
不,只是有几行。感谢您的编辑