[ANSOL-geral]Fotos da AG

Luciano Miguel Ferreira Rocha strange arroba nsk.yi.org
Mon, 1 Apr 2002 23:30:44 +0100


On Mon, Apr 01, 2002 at 12:41:25AM +0100, Ruben Leote Mendes wrote:
> Em princípio (algumas) delas estarão disponíveis na página da A=
NSOL em breve.
> Já agora, alguém conhece algum programa (livre obviamente) para ger=
ar uma
> página html com "thumbnails"?

(
  echo '<html><head><title>fotos da janta</title></head><body>'
  for i in $(ls *.jpg | grep -v small)
  do
    [[ -f small$i ]] || convert -geometry 25%x25% $i small$i
    echo "<p>$i<br><a href=\"$i\"><img src=\"small$i\"></a>"
  done
  echo '</body>'
) > index.html

Cumps

-- 
Luciano Rocha, strange arroba nsk.yi.org

The trouble with computers is that they do what you tell them, not what
you want.
                -- D. Cohen