base64: add pt_BR translation

pull/1/head
Andreia Bohner 2022-07-16 23:13:57 -03:00 committed by Axel Navarro
parent 2f874af517
commit 1b798b0e38
1 changed files with 20 additions and 0 deletions

20
pages.pt_BR/osx/base64.md Normal file
View File

@ -0,0 +1,20 @@
# base64
> Codifica e decodifica usando a representação Base64.
> Mais informações: <https://www.unix.com/man-page/osx/1/base64/>.
- Codificar um arquivo:
`base64 --input={{arquivo}}`
- Decodificar um arquivo:
`base64 --decode --input={{arquivo_base64}}`
- Codificar de stdin:
`echo -n "{{texto}}" | base64`
- Decodificar de stdin:
`echo -n {{texto_base64}} | base64 --decode`