Skip to content

Instantly share code, notes, and snippets.

@djamol
Created May 19, 2018 18:30
Show Gist options
  • Save djamol/3cb2c283e3c0f0994ea9b42191c02503 to your computer and use it in GitHub Desktop.
Save djamol/3cb2c283e3c0f0994ea9b42191c02503 to your computer and use it in GitHub Desktop.
Google Drive Direct Download
function gdrive_download () {
CONFIRM=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate "https://docs.google.com/uc?export=download&id=$1" -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$CONFIRM&id=$1" -O $2
rm -rf /tmp/cookies.txt
}
gdrive_download 0B-x0PDB0WVsieWVSRk5uWkVCeE0 test.zip
#gdrive_download <File ID> <File Name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment