You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
495 B

7 years ago
paste
===
将多个文件按列队列合并
## 补充说明
**paste命令** 用于将多个文件按照列队列进行合并。
### 语法
```
paste(选项)(参数)
```
### 选项
```
-d<间隔字符>或--delimiters=<间隔字符>:用指定的间隔字符取代跳格字符;
-s或——serial串列进行而非平行处理。
```
### 参数
文件列表:指定需要合并的文件列表。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->