mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
483 B
483 B
base64
Codifica e decodifica utilizzando la rappresentazione in base64. Maggiori informazioni: https://keith.github.io/xcode-man-pages/base64.1.html.
- Codifica un file:
base64 {{[-i|--input]}} {{file_da_codificare}}
- Decodifica un file:
base64 {{[-d|--decode]}} {{[-i|--input]}} {{file_da_decodificare}}
- Codifica da
stdin
:
echo -n "{{testo_da_codificare}}" | base64
- Decodifica da
stdin
:
echo -n {{testo_da_decodificare}} | base64 {{[-d|--decode]}}