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.

29 lines
834 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

fold
===
控制文件内容输出时所占用的屏幕宽度
## 补充说明
**fold命令** 用于控制文件内容输出时所占用的屏幕宽度。fold命令会从指定的文件里读取内容将超过限定列宽的列加入增列字符后输出到标准输出设备。若不指定任何文件名称或是所给予的文件名为“-”则fold指令会从标准输入设备读取数据。
### 语法
```
fold(选项)(参数)
```
### 选项
```
-b或——bytes以Byte为单位计算列宽而非采用行数编号为单位
-s或——spaces以空格字符作为换列点
-w<每列行数>或--width<每列行数>:设置每列的最大行数。
```
### 参数
文件:指定要显示内容的文件。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->