Files
tldr/pages.pl/common/base64.md
Michal 1f3c78c715 create base64.md
initial
2020-04-19 13:31:16 +01:00

280 B

base64

Encode or decode file or standard input to/from Base64, to standard output.

  • Encode a file:

base64 {{filename}}

  • Decode a file:

base64 -d {{filename}}

  • Encode from stdin:

{{somecommand}} | base64

  • Decode from stdin:

{{somecommand}} | base64 -d