wget加上参数之后,即可成为相当强大的下载工具。 
wget -r -p -np -k http://xxx.com/abc/
-r, --recursive(递归) specify recursive download.(指定递归下载) 
-k, --convert-links(转换链接) make links in downloaded HTML point to local files.(将下载的HTML页面中的链接转换为相对链接即本地链接) 
-p, --page-requisites(页面必需元素) get all images, etc. needed to display HTML page.(下载所有的图片等页面显示所需的内容) 
-np, --no-parent(不追溯至父级) don't ascend to the parent directory. 
另外断点续传用-nc参数 日志 用-o参数

相关文章:

  • 2021-07-30
  • 2021-06-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2021-11-20
  • 2022-02-07
  • 2021-09-11
猜你喜欢
  • 2021-12-07
  • 2021-12-18
  • 2021-05-19
  • 2021-05-26
  • 2021-07-03
  • 2022-12-23
相关资源
相似解决方案