mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
1ba0d0c32b
updated
286 B
286 B
base64
Enkoduj lub dekoduj plik lub standardowe wejście do/z Base64, na standardowe wyjście.
- Enkoduj plik:
base64 {{filename}}
- Dekoduj plik:
base64 -d {{filename}}
- Enkoduj z
stdin
:
{{somecommand}} | base64
- Dekoduj z
stdin
:
{{somecommand}} | base64 -d