1
0
Fork 0
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:
Hayden Schiff 2016-02-05 11:37:35 -05:00
parent 753e94850b
commit ec4634971b

19
pages/common/base32.md Normal file
View 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`