#!/bin/sh
cat << EOF
Content-type: text/html

<html>
<title>Wakko's unsorted page...</title>
<h2><center>Welcome to my unsorted page</center></h2>
I do not have descriptions for these files as of yet.  If you want to send
me a decent description for these, email me:
EOF
echo "<a href=\"mailto:wakko@`hostname -f`\">wakko</a>@<a href=\"/\">`hostname`</a><p>"

echo "<pre>"
for file in *;do
 [ "$file" != "index.cgi" ] && echo "<a href=\"$file\">$file</a> `echo \`wc -c $file|cut -b 1-8\`/1024|bc`k"
done

echo "</pre>
</html>"

