How to download HTTP directory with all files and sub-directories as they appear on the online files/folders list?

后端 未结 8 1690
情歌与酒
情歌与酒 2020-12-02 03:29

There is an online HTTP directory that I have access to. I have tried to download all sub-directories and files via wget. But, the problem is that when wg

8条回答
  •  北海茫月
    2020-12-02 04:11

    you can use lftp, the swish army knife of downloading if you have bigger files you can add --use-pget-n=10 to command

    lftp -c 'mirror --parallel=100 https://example.com/files/ ;exit'
    

提交回复
热议问题