mirror of https://github.com/CrimsonTome/tldr.git
21 lines
447 B
Markdown
21 lines
447 B
Markdown
# 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 --input={{file_da_codificare}}`
|
|
|
|
- Decodifica un file:
|
|
|
|
`base64 --decode --input={{file_da_decodificare}}`
|
|
|
|
- Codifica da `stdin`:
|
|
|
|
`echo -n "{{testo_da_codificare}}" | base64`
|
|
|
|
- Decodifica da `stdin`:
|
|
|
|
`echo -n {{testo_da_decodificare}} | base64 --decode`
|