#!/bin/sh

# making a table of thumbnail images with hyperlinks on large versions
#  Jenik Hollan, May 2002

export LC_TIME=english
# the export works, when not overriden 
# by LC_ALL=somethingelse in /etc/environment
# (anyway, for e.g. LANG=deutsch it is obsolete, as the shorts of months are
# the same as in English)

ls -o -h *.jpg | cut -c 29- > list.txt
sed \
 "s|\( *\)\([[:alnum:].]*\) \(.*\) \(.*\) \(.*\) \(.*\)|\
<table><tr><td><A href=\"\6\"><IMG src=\"thumb/\6\" alt=\"(\2)\"></A>\\
 <td> \3 \4 \5, \6 </table>|" \
  list.txt >list.htm

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

