Wget

如何遞歸下載 localhost:8080 到名為“sample”的文件夾中的硬碟驅動器?

  • May 29, 2018

似乎curl沒有能力做到這一點,並且wget可以完成這項工作。(在 Mac OS X 上執行此操作)

wget -r --no-parent http://localhost:8080

將下載到一個名為localhost:8080

wget -r --no-parent http://localhost:8080 -P sample

將下載到一個名為sample/localhost:8080

有沒有辦法下載到sample(沒有localhost:8080部分?)

PS我正在下載localhost:8080,因為node.js可以提供我用React JS編寫的頁面,但是bundle.js在我的整個目錄中找不到“編譯文件”,所以我只是wget用來做這項工作,它也可以下載index.html和那些文件在style/css/也。

wget -r http://localhost:8080 -P sample -nH

,其中*-nH*(或 –no-host-directories)不會創建主機目錄。

引用自:https://unix.stackexchange.com/questions/354777