2022-07-17 03:13:57 +01:00
|
|
|
# base64
|
|
|
|
|
|
|
|
> Codifica e decodifica usando a representação Base64.
|
|
|
|
> Mais informações: <https://www.unix.com/man-page/osx/1/base64/>.
|
|
|
|
|
2023-12-27 18:37:07 +00:00
|
|
|
- Codifica um arquivo:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`base64 --input={{arquivo}}`
|
|
|
|
|
2023-12-27 18:37:07 +00:00
|
|
|
- Decodifica um arquivo:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`base64 --decode --input={{arquivo_base64}}`
|
|
|
|
|
2023-12-27 18:37:07 +00:00
|
|
|
- Codifica de `stdin`:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`echo -n "{{texto}}" | base64`
|
|
|
|
|
2023-12-27 18:37:07 +00:00
|
|
|
- Decodifica de `stdin`:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`echo -n {{texto_base64}} | base64 --decode`
|