mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
base64: add pt_BR translation
This commit is contained in:
parent
2f874af517
commit
1b798b0e38
1 changed files with 20 additions and 0 deletions
20
pages.pt_BR/osx/base64.md
Normal file
20
pages.pt_BR/osx/base64.md
Normal 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`
|
Loading…
Add table
Reference in a new issue