paste 是 Linux 中用于按列合并文件的命令。它可以将多个文件的内容按列合并在一起,类似于表格的列合并。
1 2 3 4 5 6 7 8 9
➜ paste --help 用法: paste [选项]... [文件]... Write lines consisting of the sequentially corresponding lines from each FILE, separated by TABs, to standard output.
-d, --delimiters=LIST reuse characters from LIST instead of TABs -s, --serial paste one file at a time instead of in parallel --help 显示此帮助信息并退出 --version 输出版本信息并退出