1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 11:06:00 +02:00

update base64

updated
This commit is contained in:
Michal 2020-04-15 19:13:54 +02:00 committed by Starbeamrainbowlabs
parent 557c588cd9
commit 1ba0d0c32b

View file

@ -1,19 +1,19 @@
# base64
> Encode or decode file or standard input to/from Base64, to standard output.
> Enkoduj lub dekoduj plik lub standardowe wejście do/z Base64, na standardowe wyjście.
- Encode a file:
- Enkoduj plik:
`base64 {{filename}}`
- Decode a file:
- Dekoduj plik:
`base64 -d {{filename}}`
- Encode from `stdin`:
- Enkoduj z `stdin`:
`{{somecommand}} | base64`
- Decode from `stdin`:
- Dekoduj z `stdin`:
`{{somecommand}} | base64 -d`