Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,20 +1,20 @@
# base64
> 将文件或标准输入编码到Base64或从Base64解码为标准输出。
> 将文件或标准输入编码到 Base64 或从 Base64 解码为标准输出。
> 更多信息: <https://www.gnu.org/software/coreutils/base64>.
- 编码一个文件:
- 编码一个文件
`base64 {{文件名}}`
- 解码一个文件:
- 解码一个文件
`base64 --decode {{文件名}}`
- 从标准输入编码:
- 从标准输入编码
`{{某指令}} | base64`
- 将标准输入解码:
- 将标准输入解码
`{{某指令}} | base64 --decode`