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

21
pages.zh/common/column.md Normal file
View File

@@ -0,0 +1,21 @@
# column
> 将 `stdin` 或文件格式化为多列。
> 列在行之前填充;默认分隔符为空格。
> 更多信息:<https://manned.org/column>。
- 为宽度为 30 个字符的显示格式化命令输出:
`printf "header1 header2\nbar foo\n" | column --output-width {{30}}`
- 自动拆分列并在表格格式中自动对齐:
`printf "header1 header2\nbar foo\n" | column --table`
-`--table` 选项指定列分隔符字符例如CSV 的 ",")(默认为空格):
`printf "header1,header2\nbar,foo\n" | column --table --separator {{,}}`
- 在填充列之前填充行:
`printf "header1\nbar\nfoobar\n" | column --output-width {{30}} --fillrows`