2022-07-17 03:13:57 +01:00
|
|
|
# base64
|
|
|
|
|
|
|
|
> Codifica e decodifica usando a representação Base64.
|
2024-01-31 10:20:27 +00:00
|
|
|
> Mais informações: <https://keith.github.io/xcode-man-pages/base64.1.html>.
|
2022-07-17 03:13:57 +01:00
|
|
|
|
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`
|