1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/base64.md
2021-10-03 09:59:14 -03:00

20 lines
429 B
Markdown

# 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`