Doc /

Jpgtohtml

#!/bin/sh
# written in Fev 11, 2007 by Jean-Daniel Dodin
# feel free to use at will

# this script takes a list of photo files (regexp) and
# makes an html page with links to them and html pages to display them


#traitement du fichier index
rm $index;

#en-tête html
echo -n "<html><body>" >> $index;

#make one html file per image:

for I ; do

file="$I.html" ;
index="liens.html" ;

#trace du travail
echo $I ;

#traitement du fichier image
#en-tête html
echo "<html><body>" > $file;
#afficher l'image
echo "<IMG width=\"650\" src=\"$I\"><br />" >> $file ;
#fermeture du fichier
echo -n "</body></html>" >> $file;


#ajout du lien dans l'index
echo -n "<a href=\""$file\"" target=\"contents\">$file</a><br />" >> $index ;

done ;

#fermeture du fichier index
echo -n "</body></html>" >> $index;