Estou tentando codificar uma imagem em base64 em um script de shell e colocá-la na variável:
test="$(printf DSC_0251.JPG | base64)"
echo $test
RFNDXzAyNTEuSlBH
Eu também tentei algo assim:
test=\`echo -ne DSC_0251.JPG | base64\`
mas ainda sem sucesso.
Eu quero fazer algo assim:
curl -v -X POST -d '{"image":$IMAGE_BASE64,"location":$LOCATION,"time_created":$TIMECREATED}' -H 'Content-type: text/plain; charset=UTF8' http://192.168.1.1/upload
Encontrei este http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html
mas ainda não teve sucesso.