Files
tldr/pages.fr/common/base64.md
2021-10-03 09:59:14 -03:00

21 lines
429 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.
> 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`