Skip to content

Instantly share code, notes, and snippets.

@hexbinoct
Created June 16, 2018 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hexbinoct/e6886f5e31fdbc2c1e43af8caf487b81 to your computer and use it in GitHub Desktop.
Save hexbinoct/e6886f5e31fdbc2c1e43af8caf487b81 to your computer and use it in GitHub Desktop.
download file from google drive using WGET (for linux console)
got the help from this link, good suggestions:
https://gist.github.com/iamtekeste/3cdfd0366ebfd2c0d805
what worked for me:
what I got from google drive (shareable link) was this:
`https://drive.google.com/open?id=ID`
changed it to:
`wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=ID' -O FILENAME`
after this you will get a file named FILENAME in the directory, rename it to your liking.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment