1
0

base64decode.sh 104 B

12345678
  1. #! /bin/bash
  2. OS="`uname -s`"
  3. if test "${OS}" = "Darwin" ; then
  4. BASE64DEC="-D"
  5. else
  6. BASE64DEC="-d"
  7. fi