mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
436 B
436 B
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 {{[-i|--input]}} {{arquivo}}
- Decodifica um arquivo:
base64 {{[-d|--decode]}} {{[-i|--input]}} {{arquivo_base64}}
- Codifica de
stdin
:
echo -n "{{texto}}" | base64
- Decodifica de
stdin
:
echo -n {{texto_base64}} | base64 {{[-d|--decode]}}