base32, base64: fix -D flag (#5234)

translation-badges
Matthias Lübken 2021-03-07 23:58:11 +01:00 committed by GitHub
parent 9ffbe151a6
commit 00e00396a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 36 additions and 36 deletions

View File

@ -8,7 +8,7 @@
- Decodifica un archivo: - Decodifica un archivo:
`base64 -d {{nombre_de_archivo}}` `base64 --decode {{nombre_de_archivo}}`
- Codifica stdin: - Codifica stdin:
@ -16,4 +16,4 @@
- Decodifica stdin: - Decodifica stdin:
`{{comando}} | base64 -d` `{{comando}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Décode un fichier : - Décode un fichier :
`base32 -d {{fichier}}` `base32 --decode {{fichier}}`
- Encode depuis stdin : - Encode depuis stdin :
@ -16,4 +16,4 @@
- Décode depuis stdin : - Décode depuis stdin :
`{{commande}} | base32 -d` `{{commande}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- Décoder un fichier : - Décoder un fichier :
`base64 -d {{fichier}}` `base64 --decode {{fichier}}`
- Encoder depuis stdin : - Encoder depuis stdin :
@ -16,4 +16,4 @@
- Décoder depuis stdin : - Décoder depuis stdin :
`{{une_commande}} | base64 -d` `{{une_commande}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Decodifica un file: - Decodifica un file:
`base32 -d {{nome_file}}` `base32 --decode {{nome_file}}`
- Codifica da stdin: - Codifica da stdin:
@ -16,4 +16,4 @@
- Decodifica da stdin: - Decodifica da stdin:
`{{comando}} | base32 -d` `{{comando}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- Decodifica un file: - Decodifica un file:
`base64 -d {{nome_file}}` `base64 --decode {{nome_file}}`
- Codifica da stdin: - Codifica da stdin:
@ -16,4 +16,4 @@
- Decodifica da stdin: - Decodifica da stdin:
`{{comando}} | base64 -d` `{{comando}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Decodifica un file: - Decodifica un file:
`base64 -D -i {{file_da_decodificare}}` `base64 --decode -i {{file_da_decodificare}}`
- Codifica da stdin: - Codifica da stdin:
@ -16,4 +16,4 @@
- Decodifica da stdin: - Decodifica da stdin:
`echo -n {{testo_da_decodificare}} | base64 -D` `echo -n {{testo_da_decodificare}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- 파일 디코딩: - 파일 디코딩:
`base32 -d {{filename}}` `base32 --decode {{filename}}`
- stdin에서 인코딩: - stdin에서 인코딩:
@ -16,5 +16,5 @@
- stdin에서 디코딩: - stdin에서 디코딩:
`{{somecommand}} | base32 -d` `{{somecommand}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- 파일 디코딩: - 파일 디코딩:
`base64 -d {{filename}}` `base64 --decode {{filename}}`
- stdin에서 인코딩: - stdin에서 인코딩:
@ -16,4 +16,4 @@
- stdin에서 디코딩: - stdin에서 디코딩:
`{{somecommand}} | base64 -d` `{{somecommand}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Decodeer een bestand: - Decodeer een bestand:
`base64 -d {{bestandsnaam}}` `base64 --decode {{bestandsnaam}}`
- Codeer stdin: - Codeer stdin:
@ -16,4 +16,4 @@
- Decodeer stdin: - Decodeer stdin:
`{{eencommando}} | base64 -d` `{{eencommando}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Dekoduj plik: - Dekoduj plik:
`base32 -d {{nazwapliku}}` `base32 --decode {{nazwapliku}}`
- Enkoduj z stdin: - Enkoduj z stdin:
@ -16,4 +16,4 @@
- Dekoduj z stdin: - Dekoduj z stdin:
`{{jakiespolecenie}} | base32 -d` `{{jakiespolecenie}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- Dekoduj plik: - Dekoduj plik:
`base64 -d {{nazwapliku}}` `base64 --decode {{nazwapliku}}`
- Enkoduj z stdin: - Enkoduj z stdin:
@ -16,4 +16,4 @@
- Dekoduj z stdin: - Dekoduj z stdin:
`{{jakiespolecenie}} | base64 -d` `{{jakiespolecenie}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- 解码一个文件: - 解码一个文件:
`base32 -d {{文件名}}` `base32 --decode {{文件名}}`
- 从标准输入编码: - 从标准输入编码:
@ -16,4 +16,4 @@
- 将标准输入解码: - 将标准输入解码:
`{{某指令}} | base32 -d` `{{某指令}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- 解码一个文件: - 解码一个文件:
`base64 -d {{文件名}}` `base64 --decode {{文件名}}`
- 从标准输入编码: - 从标准输入编码:
@ -16,4 +16,4 @@
- 将标准输入解码: - 将标准输入解码:
`{{某指令}} | base64 -d` `{{某指令}} | base64 --decode`

View File

@ -4,11 +4,11 @@
- 编码目标文件: - 编码目标文件:
`base64 -i {{目标文件}}` `base64 --input={{目标文件}}`
- 解码目标文件: - 解码目标文件:
`base64 -D -i {{base64 编码文件}}` `base64 --decode --input={{base64 编码文件}}`
- 通过标准输入管道进行解码: - 通过标准输入管道进行解码:
@ -16,4 +16,4 @@
- 解码标准输入管道内容: - 解码标准输入管道内容:
`echo -n {{base64 字符串}} | base64 -D` `echo -n {{base64 字符串}} | base64 --decode`

View File

@ -8,7 +8,7 @@
- Decode a file: - Decode a file:
`base32 -d {{filename}}` `base32 --decode {{filename}}`
- Encode from stdin: - Encode from stdin:
@ -16,4 +16,4 @@
- Decode from stdin: - Decode from stdin:
`{{somecommand}} | base32 -d` `{{somecommand}} | base32 --decode`

View File

@ -8,7 +8,7 @@
- Decode a file: - Decode a file:
`base64 -d {{filename}}` `base64 --decode {{filename}}`
- Encode from stdin: - Encode from stdin:
@ -16,4 +16,4 @@
- Decode from stdin: - Decode from stdin:
`{{somecommand}} | base64 -d` `{{somecommand}} | base64 --decode`

View File

@ -4,11 +4,11 @@
- Encode a file: - Encode a file:
`base64 -i {{plain_file}}` `base64 --input={{plain_file}}`
- Decode a file: - Decode a file:
`base64 -D -i {{base64_file}}` `base64 --decode --input={{base64_file}}`
- Encode from stdin: - Encode from stdin:
@ -16,4 +16,4 @@
- Decode from stdin: - Decode from stdin:
`echo -n {{base64_text}} | base64 -D` `echo -n {{base64_text}} | base64 --decode`