Download Folder including Subfolder via wget from Dropbox link to Unix Server

后端 未结 4 1983
悲哀的现实
悲哀的现实 2021-02-05 10:10

I have a dropbox link like https://www.dropbox.com/sh/w4366ttcz6/AAB4kSz3adZ which opens the ususal dropbox site with folders and files. Is there any chance to download the com

4条回答
  •  终归单人心
    2021-02-05 10:47

    Yes you can as it is pretty wasy follow below steps

    Firstly, get the dropbox share link. It will look like this https://www.dropbox.com/s/ad2arn440pu77si/test.txt

    Then add a “?dl=1” to the end of that url and a “-O filename” so that you end up with something like this: wget https://www.dropbox.com/s/ad2arn440pu77si/test.txt?dl=1 -O test.txt

    Now you can easily get files onto your linux.

提交回复
热议问题