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

26
Linux/command/expand.md Normal file
View File

@@ -0,0 +1,26 @@
expand
===
将文件的制表符转换为空白字符
## 补充说明
**expand命令** 用于将文件的制表符TAB转换为空白字符space将结果显示到标准输出设备。
### 语法
```shell
expand(选项)(参数)
```
### 选项
```shell
-t<数字>指定制表符所代表的空白字符的个数而不使用默认的8。
```
### 参数
文件:指定要转换制表符为空白的文件。