Parent Directory
|
Revision Log
Merged
1 | 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 == "" ? " " : $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 |