Files
tldr/pages.fr/common/base32.md
2021-03-30 10:11:31 +03:00

21 lines
457 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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/manual/html_node/base32-invocation.html>.
- Encode un fichier :
`base32 {{fichier}}`
- Décode un fichier :
`base32 --decode {{fichier}}`
- Encode depuis stdin :
`{{commande}} | base32`
- Décode depuis stdin :
`{{commande}} | base32 --decode`