«

shell脚本实现快速生成xml格式sitemap实例分享

时间:2024-3-2 15:53     作者:韩俊     分类: Linux


用shell快速生成xml格式的sitemap地图文件,中小型网站适用。在本次案例中,生成12053条URL的sitemap文件,仅用时4.3秒!shell代码如下:

cat sitemap.txt|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。

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

标签: linux

热门推荐