--- Philip S Tellis philip.tellis@gmx.net wrote: Sometime on Mar 6, Maz Kamran assembled some asciibets to say:
I have a directory of say 300 small images ( as gif files). Now I want to convert this into a series of HTML pages. Is there an automated way to do it?
.Exactly what do you mean by convert gif to html?
-------------- ¨Organize¨ is a better word ... I would like to generate an html layout with the series of gif images...
My need is to be able to print them out systematically on A4 pages. Now they are in a directory. If I can organize them in a way that it will be easy to print out....
_____________________________________________________________ Linux.Net -->Open Source to everyone Powered by Linare Corporation http://www.linare.com/
On 06/03/04 23:09 -0800, Maz Kamran wrote: <snip>
Organize is a better word ... I would like to generate an html layout with the series of gif images...
My need is to be able to print them out systematically on A4 pages. Now they are in a directory. If I can organize them in a way that it will be easy to print out....
Line length < 80 characters please. 72 or 76 preferred.
You could just name the files in a sortable order, echo -n "" > index.html for i in `ls -1 *|sort`; do echo "<img src=file:///${i}>" >> index.html; done and then just shovel that off for printing.
Devdas Bhagat