shithub: werc

ref: 13874b2e83bf247a0a9677bb78d48266fecb1752
dir: /bin/gensitemaptxt.rc/

View raw version
#!/bin/rc
for ( d in sites/*/ ) {

du -a $d | awk '/\.(md|html)$/ { print $2 }; {}' | 9 sed -e 's/\.(md|html)$//' -e 's,/index$,/,' -e 's,^sites/,http://,' > $d/sitemap.txt

}