I have two BASE64 encoded strings and I would like to get the BASE64 encoding of the binary concatenation of the two string using just the command line.
Example:
> $ echo -n "\x01\x02" |base64
AQI=
> $ echo -n "\x03\x04" |base64
AwQ=
> $ echo -n "\x01\x02\x03\x04" |base64
AQIDBA==
So the input values to my problem would be AQI= and AwQ=, the desired output is AQIDBA==