Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
输入文件1:
HELLO HOW
输入文件2:
ARE YOU
输出文件应该是
HELLO HOW ARE YOU
我的输入文件将位于一个文件夹中,我的脚本必须从该文件夹中获取输入文件并按照上述给定顺序合并所有文件。
谢谢
您可以简单地使用cat如下所示:
cat
cat file1 file2
或者,连接文件夹中的所有文件(假设没有太多):
cat folder/*
sed '' file1 file2
希望这能正常工作+
猫:
cat file1 file2 >output
perl:
perl -plne '' file1 file2 >output
awk:
awk '1' file1 file2 >output