Files
tldr/pages.zh/common/uuencode.md
Jin 2a4ef14253 common/u*: add Chinese translation (#14688)
* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
2024-11-19 01:23:02 -08:00

17 lines
627 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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