base64: moved from linux to common

This commit is contained in:
Hayden Schiff
2016-02-05 11:37:27 -05:00
parent f38c34f484
commit 753e94850b

19
pages/common/base64.md Normal file
View File

@@ -0,0 +1,19 @@
# base64
> Encode or decode file or standard input, to standard output.
- Encode a file:
`base64 {{filename}}`
- Decode a file:
`base64 -d {{filename}}`
- Encode from stdin:
`{{somecommand}} | base64`
- Decode from stdin:
`{{somecommand}} | base64 -d`