#!/bin/sh
rm -f liste.html 
cat > liste.html <<===LISTE
<LI> <a href="Q0026+1259/index.html">Q0026+1259: Galaxies</a>
<LI> <a href="TONS180/index.html">Ton S 180: Galaxies</a>
<LI> <a href="TONS210/index.html">Ton S 210: Galaxies</a>
<LI> <a href="PKS0312-77/index.html">PKS0312-77: Galaxies</a>
<LI> <a href="PKS0405-123/index.html">PKS0405-123: Galaxies</a>
<LI> <a href="PKS0558-504/index.html">PKS0558-504: Galaxies</a>
<LI> <a href="PG1004+130/index.html">PG1004+130: Galaxies</a>
<LI> <a href="HE1029-140/index.html">HE1029-140: Galaxies</a>
<LI> <a href="PG1116+215/index.html">PG1116+215: Galaxies</a>
<LI> <a href="PG1211+143/index.html">PG1211+143: Galaxies</a>
<LI> <a href="PG1216+069/index.html">PG1216+069: Galaxies</a>
<LI> <a href="3C273/index.html">3C273: Galaxies</a>
<LI> <a href="Q1230+0947/index.html">Q1230+0947: Galaxies</a>
<LI> <a href="PKS1302-102/index.html">PKS1302-102: Galaxies</a>
<LI> <a href="PG1307+085/index.html">PG1307+085: Galaxies</a>
<LI> <a href="MRK1383/index.html">MRK1383: Galaxies</a>
<LI> <a href="Q1553+113/index.html">Q1553+113: Galaxies</a>
<LI> <a href="PKS2005-489/index.html">PKS2005-489: Galaxies</a>
<LI> <a href="FJ2155-0922/index.html">FJ2155-0922: Galaxies</a>
<LI> <a href="PKS2155-304/index.html">PKS2155-304: Galaxies</a>
===LISTE

U="http://www.ucolick.org/~xavier/WFCCDOVI"
for f in `acut -d'"' -f2 liste.html | acut -d/ -f1`; do
    echo "#...wwwget $U/$f"
    wwwget $U/$f/ > $f.html
    t=`grep 'ummary Table.*ID' $f.html | head -1 | acut -d'"' -f2`
    echo "#...wwwget $U/$f/$t"
    wwwget $U/$f/$t > $t
done
