Skip to content

Instantly share code, notes, and snippets.

@igorbrigadir
Created December 17, 2019 12:54
Show Gist options
  • Save igorbrigadir/23e6d97424e73b4a8eacfcdbdb9d97b8 to your computer and use it in GitHub Desktop.
Save igorbrigadir/23e6d97424e73b4a8eacfcdbdb9d97b8 to your computer and use it in GitHub Desktop.
Google Drive Download with wget

File ID: https://drive.google.com/file/d/1UibyVC_C2hoT_XEw15gPEwPW4yFyJFeOEA/view?usp=sharing

1UibyVC_C2hoT_XEw15gPEwPW4yFyJFeOEA

< 100 MB "Small File"

wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O FILENAME

> 100 MB "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