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