2020-12-25 21:48:41 -05:00
|
|
|
# base32
|
|
|
|
|
|
|
|
> Encode ou décode un fichier ou l'entrée standard vers ou depuis la base 32, et retourne le résultat à la sortie standard.
|
2021-10-07 09:37:39 +02:00
|
|
|
> Plus d'informations : <https://www.gnu.org/software/coreutils/base32>.
|
2020-12-25 21:48:41 -05:00
|
|
|
|
2021-10-07 09:37:39 +02:00
|
|
|
- Encode un fichier :
|
2020-12-25 21:48:41 -05:00
|
|
|
|
|
|
|
`base32 {{fichier}}`
|
|
|
|
|
2021-10-07 09:37:39 +02:00
|
|
|
- Décode un fichier :
|
2020-12-25 21:48:41 -05:00
|
|
|
|
2021-03-07 23:58:11 +01:00
|
|
|
`base32 --decode {{fichier}}`
|
2020-12-25 21:48:41 -05:00
|
|
|
|
2023-07-02 06:12:01 -07:00
|
|
|
- Encode depuis `stdin` :
|
2020-12-25 21:48:41 -05:00
|
|
|
|
|
|
|
`{{commande}} | base32`
|
|
|
|
|
2023-07-02 06:12:01 -07:00
|
|
|
- Décode depuis `stdin` :
|
2020-12-25 21:48:41 -05:00
|
|
|
|
2021-03-07 23:58:11 +01:00
|
|
|
`{{commande}} | base32 --decode`
|