chiark / gitweb /
wip await gen
[otter.git] / bundled-sources-make-index
1 #!/bin/sh
2 set -e
3 title="Otter source code"
4 echo "<html><head><title>$title</title></head>"
5 echo "<body><h1>$title</h1><ul>"
6 for x in $@; do
7     echo "<li><a href=\"$x\">$x</a>"
8 done
9 echo '</ul><body></html>'