1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 01:22:10 +02:00
tldr/pages.fr/common/base32.md
4G3NT 87ec0727fc
pages*: add backticks to every io stream (#10442)
* pages*: add backticks to every io stream
2023-07-02 18:42:01 +05:30

425 B

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.

  • Encode un fichier :

base32 {{fichier}}

  • Décode un fichier :

base32 --decode {{fichier}}

  • Encode depuis stdin :

{{commande}} | base32

  • Décode depuis stdin :

{{commande}} | base32 --decode