Files
tldr/pages.fr/common/base64.md
2021-04-01 18:54:26 +03:00

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