This entry is very new in the tldr-pages project, hence translation data is currently unavailable for a while.
base64
Codifica e decodifica usando a representação Base64. Mais informações: https://keith.github.io/xcode-man-pages/base64.1.html.
- Codifica um arquivo:
base64 --input=
arquivo
- Decodifica um arquivo:
base64 --decode --input=
arquivo_base64
- Codifica de
stdin
:
echo -n "
texto" | base64
- Decodifica de
stdin
:
echo -n
texto_base64 | base64 --decode