linux在google drive上下载大文件

创建ss.sh

 

filename="chain.zip"

file_id="1KWG4c4ieT_4K9Rd7EYdXqH27Py1wRiNk"

query=`curl -c ./cookie.txt -s -L "https://drive.google.com/uc?export=download&id=${file_id}" \

| perl -nE'say/uc-download-link.*? href="(.*?)\">/' \

| sed -e 's/amp;//g' | sed -n 2p`

url="https://drive.google.com$query"

curl -b ./cookie.txt -L -o ${filename} $url

 

filename 就是保存下载文件的名称

file_id 在下载链接中能找到

然后运行一下 ./ss.sh运行一下就行

 

如果没有权限,使用下面的命令

chmod +x ./ss.sh

你可能感兴趣的:(linux在google drive上下载大文件)