#!/bin/sh

#ls -t *.dat.gz | head -1 > last.txt
ls | grep -v '.dat.gz$\|update\|index' | while read f; do echo "<a href=\"$f\">$f</a><br>"; done > index.html
