/[formed]/trunk/tools/anonym/html.awk
ViewVC logotype

Annotation of /trunk/tools/anonym/html.awk

Parent Directory Parent Directory | Revision Log Revision Log


Revision 236 - (hide annotations)
Mon Feb 25 14:45:20 2008 UTC (17 years ago) by teichmann
File size: 289 byte(s)
Merged

1 teichmann 236 BEGIN {
2     print "<html><body><table border>"
3     FS = "\t"
4     }
5     { printf("<tr>");
6     for (i = 1; i <= NF; ++i) {
7     if (i > 1) {
8     printf("</td>")
9     }
10     out = $i == "" ? "&nbsp;" : $i
11     printf("<td>%s", out)
12     }
13     printf("</td></tr>\n")
14     }
15     END {
16     print "</table>"
17     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26