From ec4634971b31ca925f5baba8b0101bd272599b94 Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Fri, 5 Feb 2016 11:37:35 -0500 Subject: [PATCH] base32: add page --- pages/common/base32.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/base32.md diff --git a/pages/common/base32.md b/pages/common/base32.md new file mode 100644 index 0000000000..6bb4db2c91 --- /dev/null +++ b/pages/common/base32.md @@ -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`