#!/bin/sh echo "Content-type: text/html" echo "" find ../files|\ while read file do echo "<a href="$file">$file</a><br>" done