过程/输出的一个例子是:
文件1:
hello world
文件2:
foo bar
连接后生成的文件:
文件3:
hello;foo world;bar
对于大量非预测文本(非通配卡 – 但行如上所述对齐).
我无法弄清楚如何使用Ubuntu下的paste命令执行此操作.
paste -d';' File1 File2 > File3