shithub: werc

ref: d56e6b2c335fad5728ff7b1e8a19f97a47328a56
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

}