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