我尝试用 base64在 shell 脚本中编码一个图像,并将其放入变量:
test="$(printf DSC_0251.JPG | base64)"
echo $test
RFNDXzAyNTEuSlBH
我也试过这样的方法:
test=\`echo -ne DSC_0251.JPG | base64\`
但还是没有成功。
我想这样做:
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
我找到了这个 http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html
但还是没有成功。