Próbuję zakodować base64 obraz w skrypcie powłoki i umieścić go w zmiennej:
test="$(printf DSC_0251.JPG | base64)"
echo $test
RFNDXzAyNTEuSlBH
Próbowałem też czegoś takiego:
test=\`echo -ne DSC_0251.JPG | base64\`
ale nadal bez sukcesu.
Chcę zrobić coś takiego:
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
Znalazłem to http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html
ale nadal nie odniosły sukcesu.