Is it possible to decode a base 64 string in linux or unix. If so, related commands or reference notes would be really helpful.
You can use base64 -d option for decoding data, check the manual page here
echo "YmlwaW5haml0aAo=" | openssl base64 -d
bipinajith