1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:02:07 +02:00
tldr/pages.fr/common/base64.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

428 B

base64

Encoder ou décoder un fichier ou l'entrée standard en utilisant le codage Base64 à destination de la sortie standard. Plus d'informations : https://www.gnu.org/software/coreutils/base64.

  • Encode un fichier :

base64 {{fichier}}

  • Décode un fichier :

base64 --decode {{fichier}}

  • Encode depuis stdin :

{{une_commande}} | base64

  • Décode depuis stdin :

{{une_commande}} | base64 --decode