How to download an entire directory and subdirectories using wget?

后端 未结 8 1795
生来不讨喜
生来不讨喜 2020-12-07 07:33

I am trying to download the files for a project using wget, as the SVN server for that project isn\'t running anymore and I am only able to access the files thr

8条回答
  •  隐瞒了意图╮
    2020-12-07 07:59

    you can also use this command :

    wget --mirror -pc --convert-links -P ./your-local-dir/ http://www.your-website.com
    

    so that you get the exact mirror of the website you want to download

提交回复
热议问题