Created
September 6, 2018 05:22
-
-
Save ankitrgadiya/eac036c850b56dc586ee424c05f30d83 to your computer and use it in GitHub Desktop.
Generate Sitemap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo '<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' > sitemap.xml | |
find html/ -type f -name '*.html' | sed -e 's@^@<url><loc>$(HOST)@g' -e 's@$@</loc></url>@g' >> sitemap.xml | |
echo '</urlset>' >> sitemap.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment