Skip to content

Instantly share code, notes, and snippets.

@vladalive
Created May 16, 2019 14:38
Show Gist options
  • Save vladalive/535cc2aff8a9527f1d9443b036320672 to your computer and use it in GitHub Desktop.
Save vladalive/535cc2aff8a9527f1d9443b036320672 to your computer and use it in GitHub Desktop.
Download Google Drive files from linux terminal via wget

Setup:

  1. Add this code to your ~/.bash_aliases file.
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
}
  1. Open new bash session.

Usage:

gdrive_download long_google_drive_file_id filename.ext
@hundanLi
Copy link

hundanLi commented Mar 1, 2020

I replace "docs.google.com" with "drive.google.com", and it works well for me. Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment