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

24
pages.zh/common/expand.md Normal file
View File

@@ -0,0 +1,24 @@
# 扩展
> 将制表符转换为空格。
> 更多信息:<https://www.gnu.org/software/coreutils/expand>。
- 将每个文件中的制表符转换为空格,写入 `stdout`
`expand {{path/to/file}}`
-`stdin` 读取,将制表符转换为空格:
`expand`
- 不在非空白字符后转换制表符:
`expand -i {{path/to/file}}`
- 制表符之间的字符数不是 8而是某个特定的数字
`expand -t {{number}} {{path/to/file}}`
- 使用以逗号分隔的显式制表符位置列表:
`expand -t {{1,4,6}}`