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
383 B

7 years ago
paste
===
将多个文件按列队列合并
6 years ago
## 说明
7 years ago
5 years ago
**paste命令** 用于将多个文件按照列队列进行合并
7 years ago
5 years ago
## 选项
7 years ago
```
paste(选项)(参数)
```
6 years ago
7 years ago
```
5 years ago
-d<间隔字符>或--delimiters=<间隔字符>:用指定的间隔字符取代跳格字符
-s或——serial串列进行而非平行处理
7 years ago
```
### 参数
5 years ago
文件列表:指定需要合并的文件列表
7 years ago