I just wanted to post this. I edited my question with this code in it to an awsome html editor. It makes an html file that has only a title Image Veiwer and body filled with images in its current and small directory. Put this little thing in a directory with images and change the directories to match your image files locations and stuff and vwala you made an html file that lets you veiw your i images for thoughs of you using text mode linux with a computer that can veiw your webpage. Anyways thanks for the help someone fixed this for me and it works great for the directories i put in it. copy paste it use it to veiw your images on a spereate web page. you can even modify it by adding another

for images echo $images >> Image_Veiwer.html so that the image names are printed under the images. Good luck Codes GNU style.

#!/bin/bash
echo "<html>" >> "Image_Veiwer.html"
echo "<head>" >> "Image_Veiwer.html"
echo "<title>Image_Veiwer.html</title>" >> "Image_Veiwer.html"
echo "</head>" >> "Image_Veiwer.html"
echo " " >> "Image_Veiwer.html"
echo " " >> "Image_Veiwer.html"
echo " " >> "Image_Veiwer.html"
echo " " >> "Image_Veiwer.html"
echo " " >> "Image_Veiwer.html"
echo "<body>" >> "Image_Veiwer.html"
for smalli in /small/*.*
do
echo "<image src=\"/var/www/icons/small/$smalli\">" >> "Image_Veiwer.html"
echo $smalli
done
for images in *.*
echo "<image src=\"/var/www/icons/small/$images\">" >> "Image_Veiwer.html"
echo "$images"
done
echo "</body" >> "Image_Veiwer.html"
echo "</html>" >> "Image_Veiwer.html"