Hello Techie's, Do you want to send file to AWS S3 Bucket using curl command ? Well, you are in the right place..! ‐‐--------------------------------------------------------------------- bucket= your Bucket name files_location=/home/test.tar.gz now_time=$(date +"%H%M%S") contentType="application/x-compressed-tar" dateValue=`date -R` # your key goes here.. S3Key= # your secrets goes here.. s3Secret= function pushToS3() { files_path=$1 for file in $files_path do fname=$(basename $file) logInfo "Start sending $fname to S3" resource="/${bucket}/${now_date}/${fname}_${now_time}" stringToSign="PUT\n\n${contentType}\n${dateValue}\n${resource}" signature=`echo -en ${stringToSign} | openssl sha1 -hmac ${s3Secret} -binary | base64` curl -X PUT -T "${file}" \ -H "Host: ${bucket}.s3.amazonaws.com" \ -H "Date: ${dateValue}" \ -H "...
Vichietechie helps to fix the blocker you face while working with linux commands, shellscripting, powershell scripting, Managing resources in Openshift container platform and Couchbase database.