假设你的google drive link=https://drive.google.com/file/d/123456/view?usp=sharing
fileId=123456(自行替换)
fileName=对应链接的文件名
curl -sc/tmp/cookie"https://drive.google.com/uc?export=download&id=${fileId}" >/dev/null
code="$(awk'/_warning_/ {print $NF}' /tmp/cookie)"
curl-Lb /tmp/cookie"https://drive.google.com/uc?export=download&confirm=${code}&id=${fileId}"-o ${fileName}
命令行即可。
注意,fileid/filename处不可以出现空格,空格会导致脚本的失效,从而加载了别的缓存而下载错误。