过程/输出的示例为:
文件1:
hello world
文件2:
foo bar
串联后的结果文件:
文件3:
hello;foo world;bar
对于大量非预期文本(无通配符-但行如上所述对齐)。
我无法弄清楚如何在Ubuntu下使用粘贴命令来做到这一点。
paste -d';' File1 File2 > File3