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

Java知识分享网

        
AI编程,程序员挑战年入30~100万高级指南 - 职业规划
SpringBoot+SpringSecurity+Vue权限系统高级实战课程        

IDEA永久激活

Java微信小程序电商实战课程(SpringBoot+VUe)

     

AI人工智能学习大礼包

     

PyCharm永久激活

66套java实战课程无套路领取

     

Cursor+Claude AI编程 1天快速上手视频教程

     
当前位置: 主页 > 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
 
 

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


锋哥推荐