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/basenc.md Normal file
View File

@@ -0,0 +1,20 @@
# basenc
> 使用指定的编码对文件或 `stdin` 进行编码或解码,输出到 `stdout`。
> 更多信息:<https://www.gnu.org/software/coreutils/manual/html_node/basenc-invocation.html>。
- 使用 base64 编码对文件进行编码:
`basenc --base64 {{path/to/file}}`
- 使用 base64 编码对文件进行解码:
`basenc --decode --base64 {{path/to/file}}`
-`stdin` 使用 base32 编码并设置为 42 列:
`{{command}} | basenc --base32 -w42`
-`stdin` 使用 base32 编码:
`{{command}} | basenc --base32`