Skip to content

Instantly share code, notes, and snippets.

@ankitrgadiya
Created September 6, 2018 05:22
Show Gist options
  • Save ankitrgadiya/eac036c850b56dc586ee424c05f30d83 to your computer and use it in GitHub Desktop.
Save ankitrgadiya/eac036c850b56dc586ee424c05f30d83 to your computer and use it in GitHub Desktop.
Generate Sitemap
#!/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