1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages.fr/common/base32.md
2021-03-30 10:11:31 +03:00

457 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/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