Manifold reports got graphs.
[swift-upb.git] / mfold / logreport
1 #!/bin/bash
2
3 ./loggraphs &
4
5 echo '<html><head>'
6 echo '<link rel="stylesheet" href="report.css" type="text/css">'
7 echo '</head><body>'
8 echo '<table id="main"><th>'
9 for to in `grep -v '#' servers.txt`; do
10     echo '<td class="host">&gt;'$to'</td>'
11 done
12 echo '</th>'
13 for from in `grep -v '#' servers.txt`; do
14     echo '<tr><td class="host">'$from'&gt;</td>'
15     for to in `grep -v '#' servers.txt`; do
16         echo '<td>'
17         cat harvest/$from-$to.html
18         echo '</td>'
19     done
20     echo '</tr>'
21 done
22 echo '<body></html>'
23
24 wait