mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:42:09 +02:00
base64: add French translation
This commit is contained in:
parent
f85051360c
commit
ab4cf0c8be
1 changed files with 19 additions and 0 deletions
19
pages.fr/common/base64.md
Normal file
19
pages.fr/common/base64.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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}}`
|
||||
|
||||
- Decode a file :
|
||||
|
||||
`base64 -d {{fichier}}`
|
||||
|
||||
- Encoder depuis `stdin` :
|
||||
|
||||
`{{une_commande}} | base64`
|
||||
|
||||
- Décoder depuis `stdin` :
|
||||
|
||||
`{{une_commande}} | base64 -d`
|
Loading…
Add table
Reference in a new issue