如何将文本回显到新列中的文件中?

如何将文本回显到新列中的文件中?

例如我有一个名为 1.txt 的文件,其中包含:

Windows 7
Windows 8
Windows 8.1
Windows 10

和 2.txt ,其中包含:

2009
2012
2012
2014

我想将 2.txt 回显到 1.txt 中,如下所示:

Windows 7     2009
Windows 8     2012
Windows 8.1   2012
Windows 10    2014

我怎样才能实现它?

答案1

您可以使用paste命令

$ paste 1.txt 2.txt
Windows 7   2009
Windows 8   2012
Windows 8.1 2012
Windows 10  2014

相关内容