sh wget站点地图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh wget站点地图相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# creates a sitemap with purely wget
# by: Cody Kochmann
# example usage: bash wget_sitemap.sh <sitename-1> <sitename-2> <sitename-3>

function wget_sitemap
{
    # creates a sitemap of the given urls
    for i in $@
    do
        echo "creating sitemap for: $i"
        wget --spider --recursive --no-verbose --output-file=$i.sitemap.txt $i
    done
}

wget_sitemap $@

以上是关于sh wget站点地图的主要内容,如果未能解决你的问题,请参考以下文章

sh 使用wget获取包含所有文件和文件夹的站点的本地副本。这是克隆(基于静态html / css / javascript)网站fr的理想方式

用wget做站点镜像

通过 NTLM 对受保护站点使用 wget

用wget做站点镜像

4.站点克隆wget----隐写术图片----backbox linux

sh WGET