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`