mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 17:15:32 +02:00
base32: add page
This commit is contained in:
parent
753e94850b
commit
ec4634971b
1 changed files with 19 additions and 0 deletions
19
pages/common/base32.md
Normal file
19
pages/common/base32.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# base32
|
||||
|
||||
> Encode or decode file or standard input, to standard output.
|
||||
|
||||
- Encode a file:
|
||||
|
||||
`base32 {{filename}}`
|
||||
|
||||
- Decode a file:
|
||||
|
||||
`base32 -d {{filename}}`
|
||||
|
||||
- Encode from stdin:
|
||||
|
||||
`{{somecommand}} | base32`
|
||||
|
||||
- Decode from stdin:
|
||||
|
||||
`{{somecommand}} | base32 -d`
|
Loading…
Add table
Reference in a new issue