sh 用于从Google云端硬盘下载文件的Shell脚本。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 用于从Google云端硬盘下载文件的Shell脚本。相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# Description:
#   * Download big size file from Google Drive. To use, specify FILE_ID and OUTPUT.
#   * This script is based on the following link. [https://qiita.com/namakemono/items/c963e75e0af3f7eed732]

FILE_ID="FILE ID"
OUTPUT="OUTPUT FILE NAME"
curl -sc /tmp/cookie "https://drive.google.com/uc?export=download&id=${FILE_ID}" > /dev/null
CODE="$(awk '/_warning_/ {print $NF}' /tmp/cookie)"
curl -Lb /tmp/cookie "https://drive.google.com/uc?export=download&confirm=${CODE}&id=${FILE_ID}" -o ${OUTPUT}

以上是关于sh 用于从Google云端硬盘下载文件的Shell脚本。的主要内容,如果未能解决你的问题,请参考以下文章

python 从Google云端硬盘下载大文件

无权从Google云端硬盘下载我的文件

sh 使用Google云端硬盘备份服务器文件

如何从Google云端硬盘下载csv文件以在移动应用中显示内容

google 云端硬盘中的文件无法下载

无法为Google云端硬盘创建令牌目录