Gnu base64

From wikinotes
Revision as of 21:45, 19 December 2021 by Will (talk | contribs) (Created page with "cli program to convert to and from the base64 encoding scheme. = Usage = <blockquote> <syntaxhighlight lang="bash"> echo "foo" | base64 # encode 'foo' as base64 echo Z...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

cli program to convert to and from the base64 encoding scheme.

Usage

echo "foo"    | base64     # encode 'foo' as base64
echo Zm9vCg== | base64 -d  # decode back to 'foo'