#!/bin/sh temp=/tmp/tempFiles$$ echo Creating page for Arrows... rm index.html >/dev/null 2>&1 cp ../htmlBeginning index.html echo "

These files are in the arrows subdirectory

" >>index.html echo "

Blue and Green Arrows in Buttons

" >>index.html echo "

" >>index.html for file in *BlueArrowInButton.gif do if egrep "^$file\$" $temp >/dev/null 2>&1 then : else echo "

" >>index.html echo ">index.html echo " ALT=\"\"> arrows/$file" >>index.html echo $file >>$temp fi done echo "

Other Arrows

" >>index.html echo "

" >>index.html for file in *.gif do if egrep "^$file\$" $temp >/dev/null 2>&1 then : else echo "

" >>index.html echo ">index.html echo " ALT=\"\"> arrows/$file" >>index.html echo $file >>$temp fi done cat ../htmlEnding >>index.html chmod 666 index.html rm $temp echo Done.