base64 with Bash Cheat Sheet for use with bash shell.
Encode
echo 'TEXT_TO_ENCODE' | base64
Decode
echo 'TEXT_TO_DECODE' | base64 -d
base64 with Bash Cheat Sheet for use with bash shell.
echo 'TEXT_TO_ENCODE' | base64
echo 'TEXT_TO_DECODE' | base64 -d