#!/bin/sh

# making a list of images with hyperlinks on larger versions
#  one directory upwards. Jenik Hollan, April 2002

ls -1 -h -s *.jpg > list.txt
sed \
 "s|\( *\)\(.*\) \(.*\)|<A href=\"../\3\"><IMG src=\"\3\" alt=\"(\2)\"></A>|" \
  list.txt >list.htm

# before July 12, 2000, there was a missing > at the end of the IMG tag...

if [ ! -e index.htm ]
 then mv list.htm index.htm 
 fi

