#!/bin/sh
#] 
#] *********************
#] $ bash  "$d_bin""base64_mime_decode_script.sh"  - script to help use base64 character compression
# base64 C compiled program is in /usr/bin


# ***************************************************************
# base64 -u -v  -n, --noerrcheck      


# https://askubuntu.com/questions/178521/how-can-i-decode-a-base64-string-from-the-command-line#178546
# Just use the base64 program from the coreutils package:
# echo QWxhZGRpbjpvcGVuIHNlc2FtZQ== | base64 --decode
# Or, to include the newline character
# echo `echo QWxhZGRpbjpvcGVuIHNlc2FtZQ== | base64 --decode`
# output (includes newline):
# Aladdin:open sesame
# edited Jun 15 '13 at 5:03, caiguanhao
# answered Aug 21 '12 at 13:34, January


# base64 -u -v &



#] base64 d_inn  d_out  - base64 encode/decode data and print to standard output, built-in bash function

# base64 -d "/home/bill/Attachments - Thunderbird/Inn/0_Inbox example2.txt"  "/home/bill/Attachments - Thunderbird/Inn/0_Inbox example.jpg"

# base64 -d "/home/bill/Languages/GCC/C utilities/base64-1.5/0_testing/Inbox 100524 06h33, 1001 9, blash2@rogers.com, ATT0000911.jpg, MIME 1 stripped.txt" "/home/bill/Languages/GCC/C utilities/base64-1.5/0_testing/Inbox 100524 06h33, 1001 9, blash2@rogers.com, ATT0000911.jpg"

# base64 -d "/media/bill/SWAPPER/bin/base64_mime_decode_example.txt"


# to run $ cat  "/media/bill/SWAPPER/bin/base64_mime_decode_example.txt"  |  base64 --decode 



# enddoc
