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

28
Linux/command/unexpand.md Normal file
View File

@@ -0,0 +1,28 @@
unexpand
===
将文件的空白字符转换为制表符
## 补充说明
**unexpand命令** 用于将给定文件中的空白字符space转换为制表符TAB并把转换结果显示在标准输出设备显示终端
### 语法
```shell
unexpand(选项)(参数)
```
### 选项
```shell
-a或--all转换文件中所有的空白字符
--first-only仅转换开头的空白字符
-t<N>指定TAB所代表的N个N为整数字符数默认N值是8。
```
### 参数
文件指定要转换空白为TAB的文件列表。