Files
tldr/pages.fr/common/base64.md
2021-03-07 19:58:11 -03:00

20 lines
357 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.
# base64
> Encoder ou décoder un fichier ou l'entrée standard en utilisant le codage Base64 à destination de la sortie standard.
- Encoder un fichier :
`base64 {{fichier}}`
- Décoder un fichier :
`base64 --decode {{fichier}}`
- Encoder depuis stdin :
`{{une_commande}} | base64`
- Décoder depuis stdin :
`{{une_commande}} | base64 --decode`