#!/bin/rc webroot = ./ o=./ fn gettitle{ echo `{echo $1 | sed 's/\+/ /g'} } while(! ~ $#* 0) { switch ($1) { case -w webroot=$2 shift case -o o=$2 shift case * echo Usage: g9srv/webblog [-w webroot] [-o output dir] exit usage } shift } posts=`{ls -pr $webroot/posts} for(i in $posts){ awk -f /lib/gemtohtm < $webroot'/posts/'$i'' > $o'/'$i.html } echo '' > $o'/'index.html echo 'fulton.software blog' >> $o'/'index.html echo '

Fulton''s blog

' >> $o'/'index.html for(i in $posts){ name=`{gettitle $i} echo ''$"name'
' >> $o'/'index.html } exit 0