shell脚本快速生成xml格式sitemap代码实例

发布时间:2019-07-30编辑:脚本学堂
shell脚本快速生成xml格式sitemap网站地图的方法,shell脚本生成sitemap文件,创建友好的URL集合文件,方便网站被搜索引擎快速收录与索引。

shell/ target=_blank class=infotextkey>shell脚本快速生成xml格式sitemap实例代码

用shell快速生成xml格式的sitemap地图文件,中小型网站适用。

本例子中,生成12053条URL的sitemap文件,仅用时4.3秒!

shell代码:
 

cat sitemap.txt|linuxjishu/13830.html target=_blank class=infotextkey>awk 'BEGIN{print "<?xml version="1.0" encoding="UTF-8"?>n<urlset>"}{print "<url>n<loc>"$0"</loc>n<lastmod>2014-07-18</lastmod>n<changefreq>always</changefreq>n</url>"}END{print "</urlset>"}'

其中sitemap.txt是网站所有URL的集合,<lastmod>后面的日期,需要修改为当时生成sitemap文件时的日期,例如,今天是2014年7月18日。
其实用txt格式的sitemap百度也是认可的,为了体现shell功能强大之处,才把txt格式的折腾成xml格式的!

sitemap.txt内容如下图,总共有12053条URL。
sitemap.txt

最终效果及生成速度,总共12053条URL,生成xml格式的sitemap,仅用时4.3秒!速度还是相当快的!

shell脚本生成sitemap.txt