Skip to content

Instantly share code, notes, and snippets.

@yunqu
Created January 7, 2020 21:01
Show Gist options
  • Save yunqu/ac0fd779792c5c658c6b685ad8b370ad to your computer and use it in GitHub Desktop.
Save yunqu/ac0fd779792c5c658c6b685ad8b370ad to your computer and use it in GitHub Desktop.
Download a File from Dropbox in Linux

Download a File from Dropbox in Linux

To download a file from dropbox, the following steps have to be followed:

  1. In your dropbox folder, click the file you want to share, and then click share; and then click create link.
  2. Once the link has been created, you can copy the link by copy link. This will copy the link into your clipboard.
  3. You can paste it somewhere. It has a format similar to: https://www.dropbox.com/s/m5ay6j4to7ryr4p/resizer.bit?dl=0
  4. Adjust the link to https://dl.dropboxusercontent.com/s/m5ay6j4to7ryr4p/resizer.bit. This can be done by replacing the www.dropbox.com to dl.dropboxusercontent.com, and removing the tail of ?dl=0.
  5. In Linux, just use a command similar to:
    wget https://dl.dropboxusercontent.com/s/m5ay6j4to7ryr4p/resizer.bit --no-check-certificate
    
@OrangeSodahub
Copy link

Awesome!!!!!!

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