#!/bin/sh
#

echo "<HEADER>" > sampler.html
echo "<TITLE>Sampler of icons</TITLE>" >> sampler.html
echo "</HEADER>" >> sampler.html
echo "<BODY>" >> sampler.html

ls -0 *.gif | xargs -i echo \<IMG SRC=\"http://www.swin.edu.au/icons/{}\"\> /icons/{} \<P\> >> sampler.html

echo "</BODY>" >> sampler.html
