13
sitemap.sh
Executable file
13
sitemap.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
main() {
|
||||
echo "<urlset>"
|
||||
find pages/ -name '*.xhtml' | while read -r file; do
|
||||
echo "<url><loc>https://purplebored.pl/${file}</loc><priority>1.0</priority></url>"
|
||||
done
|
||||
echo "</urlset>"
|
||||
}
|
||||
|
||||
main >sitemap.xml
|
||||
Reference in New Issue
Block a user