bash[script]-使用wget下载网站

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bash[script]-使用wget下载网站相关的知识,希望对你有一定的参考价值。

<ol><li>save as filename.sh</li><li>chmod u+x filename.sh</li><li>usage : ./filename.sh"url"</li></ol>
  1. #! /bin/bash
  2. # use this script for downloading websites using 'wget' utility
  3. # replace URL field with the URL to be downloaded
  4.  
  5. URL="$1"
  6.  
  7. wget -Nrkpl 0 $URL
  8.  
  9. # wget flags and their functions
  10. # -r = recursive: follows the links
  11. # -k = changes links adresses to their local file adress
  12. # -p = downloads images
  13. # -l = recursion level. 0 for infinite.
  14.  
  15. exit

以上是关于bash[script]-使用wget下载网站的主要内容,如果未能解决你的问题,请参考以下文章

使 wget 从 bash 直接下载文件到磁盘

sh bash wget - 在下载之前检查url文件是否存在

Windows下git bash中添加wget

Windows下git bash中添加wget

使用 Wget 进行多个同时下载?

无法使用wget下载网站内容