1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/base64.md

21 lines
368 B
Markdown
Raw Normal View History

2016-01-18 17:20:20 +08:00
# base64
> Encode and decode using Base64 representation.
> More information: <https://www.unix.com/man-page/osx/1/base64/>.
2016-01-18 17:20:20 +08:00
- Encode a file:
2021-03-07 23:58:11 +01:00
`base64 --input={{plain_file}}`
2016-01-18 17:20:20 +08:00
- Decode a file:
2021-03-07 23:58:11 +01:00
`base64 --decode --input={{base64_file}}`
2016-01-18 17:20:20 +08:00
- Encode from `stdin`:
2016-01-18 17:20:20 +08:00
2022-02-14 03:21:43 -08:00
`echo -n "{{plain_text}}" | base64`
2016-01-18 17:20:20 +08:00
- Decode from `stdin`:
2016-01-18 17:20:20 +08:00
2021-03-07 23:58:11 +01:00
`echo -n {{base64_text}} | base64 --decode`