#! /bin/bash -ue
# Last edited on 2025-05-04 22:50:06 by stolfi

echo "<html>" 
echo "<head><title>Image index</title></head>" 
echo "<body>"
echo "<p>"

ls fig/zipf*.png \
  | gawk \
     ' /./{ \
         printf "<table>\n";  \
         printf "  <tr align=center>\n"; \
         printf "    <td><a href=\"%s\"><img src=\"%s\" width=256></a></td>\n", $1, $1; \
         printf "  </tr>\n"; \
         printf "  <tr align=center><td>%s</td></tr>\n", $1; \
         printf "</table>\n"; \
       } \
     '
  
echo "</p>"
echo "</body>"
echo "</html>"
