tldr/pages/common/base64.md

20 lines
276 B
Markdown
Raw Normal View History

2014-07-14 14:50:44 +01:00
# base64
> Encode or decode file or standard input to/from Base64, to standard output.
2014-07-14 14:50:44 +01:00
- Encode a file:
2014-07-14 14:50:44 +01:00
`base64 {{filename}}`
- Decode a file:
2014-07-14 14:50:44 +01:00
`base64 -d {{filename}}`
- Encode from stdin:
2014-07-14 14:50:44 +01:00
`{{somecommand}} | base64`
- Decode from stdin:
2014-07-14 14:50:44 +01:00
`{{somecommand}} | base64 -d`