linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

27
Linux/command/paste.md Normal file
View File

@@ -0,0 +1,27 @@
paste
===
将多个文件按列队列合并
## 补充说明
**paste命令** 用于将多个文件按照列队列进行合并。
### 语法
```shell
paste(选项)(参数)
```
### 选项
```shell
-d<间隔字符>或--delimiters=<间隔字符>:用指定的间隔字符取代跳格字符;
-s或——serial串列进行而非平行处理。
```
### 参数
文件列表:指定需要合并的文件列表。