Files
tldr/pages.fr/common/base32.md

20 lines
344 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.
- Encode un fichier :
`base32 {{fichier}}`
- Décode un fichier :
`base32 -d {{fichier}}`
- Encode depuis `stdin` :
`{{commande}} | base32`
- Décode depuis `stdin` :
`{{commande}} | base32 -d`