tldr/pages.fr/common/base32.md

21 lines
425 B
Markdown
Raw Normal View History

2020-12-26 02:48:41 +00: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.
> Plus d'informations : <https://www.gnu.org/software/coreutils/base32>.
2020-12-26 02:48:41 +00:00
- Encode un fichier :
2020-12-26 02:48:41 +00:00
`base32 {{fichier}}`
- Décode un fichier :
2020-12-26 02:48:41 +00:00
2021-03-07 22:58:11 +00:00
`base32 --decode {{fichier}}`
2020-12-26 02:48:41 +00:00
- Encode depuis `stdin` :
2020-12-26 02:48:41 +00:00
`{{commande}} | base32`
- Décode depuis `stdin` :
2020-12-26 02:48:41 +00:00
2021-03-07 22:58:11 +00:00
`{{commande}} | base32 --decode`