mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 08:35:23 +02:00
base64: add Chinese translation
This commit is contained in:
parent
2604c7c6e6
commit
2333d1323c
1 changed files with 19 additions and 0 deletions
19
pages.zh/osx/base64.md
Normal file
19
pages.zh/osx/base64.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# base64
|
||||
|
||||
> 使用Base64来进行编码和解码.
|
||||
|
||||
- 编码目标文件:
|
||||
|
||||
`base64 -i {{目标文件}}`
|
||||
|
||||
- 解码目标文件:
|
||||
|
||||
`base64 -D -i {{base64编码文件}}`
|
||||
|
||||
- 通过标准输入管道进行解码:
|
||||
|
||||
`echo -n {{目标字符串}} | base64`
|
||||
|
||||
- 解码标准输入管道内容:
|
||||
|
||||
`echo -n {{base64字符串}} | base64 -D`
|
Loading…
Add table
Reference in a new issue