common/base32, common/base64: standardize all translations (#13807)
This commit is contained in:

committed by
GitHub

parent
28cc4231b2
commit
a4fdb76fb0
@@ -1,15 +1,19 @@
|
||||
# base32
|
||||
|
||||
> 将文件或标准输入编码到 Base32 或从 Base32 解码为标准输出。
|
||||
> 更多信息:<https://www.gnu.org/software/coreutils/base32>.
|
||||
> 更多信息:<https://manned.org/base32>.
|
||||
|
||||
- 编码一个文件:
|
||||
|
||||
`base32 {{文件名}}`
|
||||
`base32 {{路径/到/文件}}`
|
||||
|
||||
- 按特定宽度包装编码输出(“0”表示禁用包装):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{路径/到/文件}}`
|
||||
|
||||
- 解码一个文件:
|
||||
|
||||
`base32 --decode {{文件名}}`
|
||||
`base32 {{-d|--decode}} {{路径/到/文件}}`
|
||||
|
||||
- 从标准输入编码:
|
||||
|
||||
@@ -17,4 +21,4 @@
|
||||
|
||||
- 将标准输入解码:
|
||||
|
||||
`{{某指令}} | base32 --decode`
|
||||
`{{某指令}} | base32 {{-d|--decode}}`
|
||||
|
@@ -1,15 +1,19 @@
|
||||
# base64
|
||||
|
||||
> 将文件或标准输入编码到 Base64 或从 Base64 解码为标准输出。
|
||||
> 更多信息:<https://www.gnu.org/software/coreutils/base64>.
|
||||
> 更多信息:<https://manned.org/base64>.
|
||||
|
||||
- 编码一个文件:
|
||||
|
||||
`base64 {{文件名}}`
|
||||
`base64 {{路径/到/文件}}`
|
||||
|
||||
- 按特定宽度包装编码输出(“0”表示禁用包装):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{路径/到/文件}}`
|
||||
|
||||
- 解码一个文件:
|
||||
|
||||
`base64 --decode {{文件名}}`
|
||||
`base64 {{-d|--decode}} {{路径/到/文件}}`
|
||||
|
||||
- 从标准输入编码:
|
||||
|
||||
@@ -17,4 +21,4 @@
|
||||
|
||||
- 将标准输入解码:
|
||||
|
||||
`{{某指令}} | base64 --decode`
|
||||
`{{某指令}} | base64 {{-d|--decode}}`
|
||||
|
Reference in New Issue
Block a user