mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-05 10:35:23 +02:00
base32: add pt_BR translation (#7168)
This commit is contained in:
parent
7093cf6676
commit
ddb5e2155c
1 changed files with 20 additions and 0 deletions
20
pages.pt_BR/common/base32.md
Normal file
20
pages.pt_BR/common/base32.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# base32
|
||||
|
||||
> Codifica ou decodifica um arquivo ou a entrada padrão (stdin) de/para Base32, para a saída padrão (stdout).
|
||||
> Mais informações: <https://www.gnu.org/software/coreutils/base32>.
|
||||
|
||||
- Codifica um arquivo:
|
||||
|
||||
`base32 {{nome_do_arquivo}}`
|
||||
|
||||
- Decodifica um arquivo:
|
||||
|
||||
`base32 --decode {{nome_do_arquivo}}`
|
||||
|
||||
- Codifica a partir de stdin:
|
||||
|
||||
`{{algum_comando}} | base32`
|
||||
|
||||
- Decodifica a partir de stdin:
|
||||
|
||||
`{{algum_comando}} | base32 --decode`
|
Loading…
Add table
Reference in a new issue