#!/bin/csh
echo '<html>' >! index.html
echo '<body bgcolor=white>' >> index.html
echo '<table>' >> index.html
foreach f ( `\ls -rt | grep -v index\.html | grep -v makit` ) 
    set t = `file -b $f`
    echo >> index.html  "<tr><td><kbd> `ls --full-time -G --si -rt $f | colex 5-8 4 | sed 's/\.000000000.*+0200//g' ` </kbd><td> <a href=$f>$f</a><td> $t"
end
echo '</table>' >> index.html
echo '</body>' >> index.html
echo '</html>' >> index.html
chmod a+r index.html
chmod a+r *
echo '(updated ~/www/overslag)'
