Skip to content

Instantly share code, notes, and snippets.

@spdin
Last active July 8, 2021 08:22
Show Gist options
  • Save spdin/2fdc7d19809a15e9eae8ae192ddfd77a to your computer and use it in GitHub Desktop.
Save spdin/2fdc7d19809a15e9eae8ae192ddfd77a to your computer and use it in GitHub Desktop.
Download Google Drive Files using wget
#https://medium.com/@acpanjan/download-google-drive-files-using-wget-3c2c025a8b99
# change FILEID
# https://drive.google.com/file/d/1UibyVC_C2hoT_XEw15gPEwPW4yFyJFeOEA
# FILEID = 1UibyVC_C2hoT_XEw15gPEwPW4yFyJFeOEA
# tools
https://gdrive-wget.glitch.me/
# small file
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O FILENAME
# large file
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment