common/u*: add Chinese translation (#14688)

* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
This commit is contained in:
Jin
2024-11-19 04:23:02 -05:00
committed by GitHub
parent 156075e8b1
commit 2a4ef14253
28 changed files with 601 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# uuencode
> 将二进制文件编码为 ASCII以便通过仅支持简单 ASCII 编码的媒介传输。
> 更多信息:<https://manned.org/uuencode>.
- 编码一个文件并将结果打印到 `stdout`
`uuencode {{路径/到/输入文件}} {{解码后文件名}}`
- 编码一个文件并将结果写入到一个文件:
`uuencode -o {{路径/到/输出文件}} {{路径/到/输入文件}} {{解码后文件名}}`
- 使用 Base64 而不是默认的 uuencode 编码一个文件,并将结果写入到一个文件:
`uuencode -m -o {{路径/到/输出文件}} {{路径/到/输入文件}} {{解码后文件名}}`