Forked from jemygraw/all_in_one_batch_upload_linux.sh
Last active
August 29, 2015 14:16
-
-
Save forrest-mao/65c13f8cbda88db8cc41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -e "curl\tqboxrsctl" | |
#set variables | |
uploadFile="/home/jemy/Documents/qiniu.png" | |
uploadHost="upload.qiniu.com" | |
uploadToken="ELUs327kxVPJrGCXqWae9yioc0xYZyrIpbM6Wh6o:YEZCdEInhP2a-4Whb_D23nPl6b4=:eyJzY29wZSI6ImlmLXBibCIsImRlYWRsaW5lIjoxNDIyMDkxOTk3fQ==" | |
uploadBucket="if-pbl" | |
uploadTimes=1000 | |
curlPrefix="curl_pic" | |
qboxPrefix="qbox_pic" | |
for((i=1;i<=$uploadTimes;i++));do | |
#curl | |
startTime=$(date +%s.%N) | |
curl --silent -F "key=${curlPrefix}_${i}" -F "token=$uploadToken" -F "file=@$uploadFile" $uploadHost > /dev/null | |
endTime=$(date +%s.%N) | |
curlLastTime=$(echo "$endTime-$startTime"|bc -l) | |
#qboxrsctl | |
startTime=$(date +%s.%N) | |
qboxrsctl put $uploadBucket $qboxPrefix"_${i}" $uploadFile > /dev/null | |
endTime=$(date +%s.%N) | |
qboxLastTime=$(echo "$endTime-$startTime"|bc -l) | |
echo -e $curlLastTime "\t" $qboxLastTime | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment