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,19 +1,19 @@
# base64
> 使用 Base64 来进行编码和解码.
> 使用 Base64 来进行编码和解码
- 编码目标文件:
- 编码目标文件
`base64 --input={{目标文件}}`
- 解码目标文件:
- 解码目标文件
`base64 --decode --input={{base64 编码文件}}`
- 通过标准输入管道进行解码:
- 通过标准输入管道进行解码
`echo -n {{目标字符串}} | base64`
- 解码标准输入管道内容:
- 解码标准输入管道内容
`echo -n {{base64 字符串}} | base64 --decode`