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

View File

@@ -1,24 +1,24 @@
# base32
> 将文件或标准输入编码到 Base32 或从 Base32 解码为标准输出
> 更多信息:<https://manned.org/base32>.
> 将文件或 `stdin` 编码或解码为 Base32输出到 `stdout`
> 更多信息:<https://manned.org/base32>
- 编码一个文件:
- 编码文件:
`base32 {{路径/到/文件}}`
`base32 {{path/to/file}}`
- 特定宽度包装编码输出(“0”表示禁用包装
- 特定宽度处换行编码输出(`0` 禁用换行
`base32 {{-w|--wrap}} {{0|76|...}} {{路径/到/文件}}`
`base32 {{-w|--wrap}} {{0|76|...}} {{path/to/file}}`
- 解码一个文件:
- 解码文件:
`base32 {{-d|--decode}} {{路径/到/文件}}`
`base32 {{-d|--decode}} {{path/to/file}}`
-标准输入编码:
- `stdin` 编码:
`{{某指令}} | base32`
`{{command}} | base32`
- 将标准输入解码:
- `stdin` 解码:
`{{某指令}} | base32 {{-d|--decode}}`
`{{command}} | base32 {{-d|--decode}}`