Skip to content

Instantly share code, notes, and snippets.

@RGPaul
Last active September 15, 2018 09:24
Show Gist options
  • Save RGPaul/4e4cf28ddf5bf2e4ee5cc2dfe4055952 to your computer and use it in GitHub Desktop.
Save RGPaul/4e4cf28ddf5bf2e4ee5cc2dfe4055952 to your computer and use it in GitHub Desktop.
Download big file from Google Drive with curl
#!/usr/bin/env bash
# ----------------------------------------------------------------------------------------------------------------------
# The MIT License (MIT)
#
# Copyright (c) 2018 Ralph-Gordon Paul. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# ----------------------------------------------------------------------------------------------------------------------
googleDriveId="$1"
url='https://drive.google.com/uc?export=download'
fileName="$(curl -sc /tmp/googleDriveCookie "${url}&id=${googleDriveId}" | grep -o '="uc-name.*</span>' | sed 's/.*">//;s/<.a> .*//')"
confirmCode="$(awk '/_warning_/ {print $NF}' /tmp/googleDriveCookie)"
curl -Lb /tmp/googleDriveCookie "${url}&confirm=${confirmCode}&id=${googleDriveId}" -o "${fileName}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment