#!/bin/sh ## ## SCRIPT: 00_GEN_tilePages.sh ## ## Started: 2010mar11 ## Changed: 2010 ## ## FOR TESTING: # set -v ## ## Set the filenames list, from image files in the ## current working directory (pwd) --- the directory in which ## you are positioned when this script is initiated. ## FILENAMES=`ls | egrep '\.jpg$|\.png$|\.gif$'` ## FOR TESTING: # echo "$FILENAMES" # exit ## ## START THE LOOP on the filenames. ## for FILENAME in $FILENAMES do FILENAMECROP=`echo "$FILENAME" | sed 's|\.jpg$||'` FILENAMECROP=`echo "$FILENAMECROP" | sed 's|\.png$||'` FILENAMECROP=`echo "$FILENAMECROP" | sed 's|\.gif$||'` ## ## Set the htm output filename. ## HTMFILE="${FILENAMECROP}.htm" if test -f "$HTMFILE" then rm "$HTMFILE" fi ## Write out the HTML page with body (background-tile) statement ## putting HTMFILE in the 'tilepages' directory in the 'pwd'. echo " Web Page tiled with $FILENAME

The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
The quick brown fox
ran over the lazy dog.
" > "./tilepages/$HTMFILE" done ## ## END OF FILES LOOP. ## ## Display the HTML page for the last tile. seamonkey "./tilepages/$HTMFILE" # firefox "./tilepages/$HTMFILE"