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/>.
|
|
|
|
|
|
|
|
- Codificar um arquivo:
|
|
|
|
|
|
|
|
`base64 --input={{arquivo}}`
|
|
|
|
|
|
|
|
- Decodificar um arquivo:
|
|
|
|
|
|
|
|
`base64 --decode --input={{arquivo_base64}}`
|
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Codificar de `stdin`:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`echo -n "{{texto}}" | base64`
|
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Decodificar de `stdin`:
|
2022-07-17 03:13:57 +01:00
|
|
|
|
|
|
|
`echo -n {{texto_base64}} | base64 --decode`
|