1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:22:09 +02:00

base32: add French translation

This commit is contained in:
Ivor 2020-12-25 21:48:41 -05:00 committed by Starbeamrainbowlabs
parent db2961245b
commit 9ceab1cb0c

19
pages.fr/common/base32.md Normal file
View file

@ -0,0 +1,19 @@
# base32
> Encode ou décode un fichier ou l'entrée standard vers ou depuis la base 32, et retourne le résultat à la sortie standard.
- Encode un fichier:
`base32 {{fichier}}`
- Décode un fichier:
`base32 -d {{fichier}}`
- Encode depuis `stdin`:
`{{commande}} | base32`
- Décode depuis `stdin`:
`{{commande}} | base32 -d`