add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/fmt.md Normal file
View File

@@ -0,0 +1,20 @@
# fmt
> 通过将段落连接在一起并将行宽限制为一定字符数默认75个字符来重新格式化文本文件。
> 更多信息:<https://www.gnu.org/software/coreutils/fmt>。
- 重新格式化文件:
`fmt {{路径/到/文件}}`
- 重新格式化文件,输出行最多为 `n` 个字符:
`fmt -w {{n}} {{路径/到/文件}}`
- 重新格式化文件,不将短于给定宽度的行连接在一起:
`fmt -s {{路径/到/文件}}`
- 以统一间距重新格式化文件单词之间1个空格段落之间2个空格
`fmt -u {{路径/到/文件}}`