【wget】一条命令轻松备份博客(包括图片)

时间:2024-10-30 10:08:02

h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}

a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}

h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}

/* LISTS
=============================================================================*/

ul, ol {
padding-left: 30px;
}

ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}

ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}

dl {
padding: 0;
}

dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}

dl dt:first-child {
padding: 0;
}

dl dt>:first-child {
margin-top: 0px;
}

dl dt>:last-child {
margin-bottom: 0px;
}

dl dd {
margin: 0 0 15px;
padding: 0 15px;
}

dl dd>:first-child {
margin-top: 0px;
}

dl dd>:last-child {
margin-bottom: 0px;
}

/* CODE
=============================================================================*/

pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}

code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}

pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}

pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}

pre code, pre tt {
background-color: transparent;
border: none;
}

kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}

/* QUOTES
=============================================================================*/

blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}

blockquote>:first-child {
margin-top: 0px;
}

blockquote>:last-child {
margin-bottom: 0px;
}

/* HORIZONTAL RULES
=============================================================================*/

hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}
-->

一条命令备份网站(博客),生成HTML文件,方便随时查看。

wget -Erkp -w 5 -np [blog_url]

各选项参数的说明:

  • -E 或 --html-extension

将文件都转化成HTML文件

  • -r 或 --recursive

递归,深入各级子目录

  • -k 或者 --convert-links

重写页面上的链接。不仅会修复指向页面的链接,还会修复指向图片,CSS等文件的链接。

  • -p 或 --page-requisites

下载为了正常显示网页而需要的任何文件,如图片,CSS文件,JavaScript文件等.

  • -w 或 --wait=[#]

在每两个文件的下载之间有个短暂的停留.这有助于当连续不断地从服务器下载文件时,避免对服务器产生过重的负担。

默认情况下,间隔数字的单位是 。如果需要,也可以在数字后面加一个m ,表示分钟 ;或者用 h 表示 小时 , 甚至用 d 来指定 天数

  • -np 或 --no-parent

防止命令递归道父目录。

更详细的选项说明,可以使用 man wget 命令来查看


就以笔者的博客为例,在Linux终端下,输入以下命令,即可备份博客:

wget -Erkp -w  -np http://www.cnblogs.com/memory4young/p/

不信?

你试一试。

注:本篇内容参考自 《Linux命令速查手册》 一书。作者:【美】Scott Granneman