Skip to content

Instantly share code, notes, and snippets.

@kwbtdisk
Created April 8, 2019 02:45
Show Gist options
  • Save kwbtdisk/153f123c36201b6fb3e3c570421b93e8 to your computer and use it in GitHub Desktop.
Save kwbtdisk/153f123c36201b6fb3e3c570421b93e8 to your computer and use it in GitHub Desktop.
Download a large file on google drive with curl on linux
FILE_ID="xxxxxxxxxxxxxxxxxxxx"
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 archive.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment