Java知识分享网 - 轻松学习从此开始!    

Java知识分享网

        

联系锋哥QQ:3320160706

AI编程,程序员挑战年入30~100万高级指南 - 职业规划

Java、Python项目定制找Java1234_小锋老师,专业又靠谱 QQ:3320160706

Java、Python毕设辅导找Java1234_小锋老师,专业又靠谱 QQ:3320160706
当前位置: 主页 > Java文档 > Java基础相关 >

Linux Shell Scripting Cookbook Third Edition PDF 下载


时间:2024-08-29 11:37来源:http://www.java1234.com 作者:转载  侵权举报
Linux Shell Scripting Cookbook Third Edition
失效链接处理
Linux Shell Scripting Cookbook Third Edition PDF 下载

 
 
相关截图:
 

主要内容:

Resume downloading and continue
If wget gets interrupted before the download is complete, it can be resumed where it left off
with the -c option:
$ wget -c URL
Copying a complete website (mirroring)
wget can download a complete website by recursively collecting the URL links and
downloading them like a crawler. To download the pages, use the --mirror option:
$ wget --mirror --convert-links exampledomain.com
Alternatively, use the following command:
$ wget -r -N -l -k DEPTH URL
The -l option specifies the depth of web pages as levels. This means that it will traverse
only that number of levels. It is used along with -r (recursive). The -N argument is used to
enable time stamping for the file. URL is the base URL for a website for which the download
needs to be initiated. The -k or --convert-links option instructs wget to convert the
links to other pages to the local copy
 
 

------分隔线----------------------------


锋哥推荐