paste
瑞兹 发表于 2020-11-02 09:10浏览次数:
在类似Unix的操作系统上,paste命令并排显示多个文件的相应行。
On Unix-like operating systems, the paste command displays corresponding lines of multiple files side-by-side.
目录:
1 paste 运行系统环境
2 paste 描述
3 paste 语法
4 paste 例子
paste 运行系统环境
paste 描述
本文档涵盖GNU / Linux版本的paste。
paste将由每个FILE(由制表符分隔)中顺序对应的行组成的行写入标准输出。如果没有FILE或FILE为破折号(“ - ”),则paste从标准输入读取的内容。
This document covers the GNU / Linux version of paste
paste writes lines consisting of the sequentially corresponding lines from each FILE, separated by tabs, to the standard output. With no FILE, or when FILE is a dash ("-"), paste reads from standard input.
paste 语法
paste [OPTION]... [FILE]...
选件
-d,-- delimiters =LIST
|
重用LIST中的字符,而不是制表符。
|
-s,-- serial
|
一次粘贴一个文件,而不是并行粘贴。
|
- help
|
显示帮助消息,然后退出。
|
- version
|
显示版本信息,然后退出。
|
paste [OPTION]... [FILE]...
Options
-d, --delimiters=LIST
|
Reuse characters from LIST instead of tabs.
|
-s, --serial
|
Paste one file at a time instead of in parallel.
|
--help
|
Display a help message, and exit.
|
--version
|
Display version information, and exit.
|
paste 例子
paste file1.txt file2.txt
此命令将并排显示
file1.txt和
file2.txt的内容,每个文件的相应行由制表符分隔。
paste file1.txt file2.txt
This command would display the contents of file1.txt and file2.txt, side-by-side, with the corresponding lines of each file separated by a tab.