七牛上傳操作
阿新 • • 發佈:2017-12-03
itl -s pat account ret title tag hub filelist
下載qshell
wget -c https://dn-devtools.qbox.me/2.1.5/qshell-linux-x64
設置執行權限和配置環境變量
- mv qshell /usr/bin/
配置帳號
查看KEY https://portal.qiniu.com/user/key
qshell account <Your AccessKey> <Your SecretKey>
查看設置好的帳號信息
qshell account
編寫同步目錄配置文件
cat upload.conf
- {
- "src_dir" : "/home/boponik/XBOX",
- "bucket" : "xbox"
"file_list" : "
<FileList>
"- }
其中xbox為存儲空間名
文件列表的生成
qshell dircache <DirCacheRootPath> <DirCacheResultFile>
同步資源
qshell qupload [<ThreadCount>] <LocalUploadConfig>
ref:
1 https://developer.qiniu.com/kodo/tools/1302/qshell
2 https://developer.qiniu.com/kodo/kb/1685/using-qshell-synchronize-directories
3 https://github.com/qiniu/qshell/blob/master/docs/dircache.md
七牛上傳操作