jslhs / ffmbc

Automatically exported from code.google.com/p/ffmbc
0 stars 0 forks source link

Download through wget #192

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Would be nice if there was a possibility to download the latest source through 
wget/curl/svn/git or something similar that can be used without a gui.

Original issue reported on code.google.com by 4Se...@gmail.com on 5 Jan 2015 at 2:17

GoogleCodeExporter commented 8 years ago
Agree, I wish google drive would offer that.

Original comment by baptiste...@gmail.com on 5 Jan 2015 at 9:15

GoogleCodeExporter commented 8 years ago
It's not really that hard,...

If you:
a. set a file to public share (view to whoever has the link isn't enough)
b. copy the id from the share link.
In example: 
https://drive.google.com/file/d/0B_WxUS1XGCPAaENhalNScnAtc2M/view?usp=sharing
with 0B_WxUS1XGCPAaENhalNScnAtc2M being the file id.

you can download the file using:
wget --no-check-certificate https://googledrive.com/host/FILE_ID -O "Path to 
file"
for example:
wget --no-check-certificate 
https://googledrive.com/host/0B_WxUS1XGCPAaENhalNScnAtc2M -O 
/build32/FFmbc-0.7.2.tar.bz2

Tested this by copying the file to my googledrive. :)

Original comment by 4Se...@gmail.com on 5 Jan 2015 at 9:20