You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN { |
|
color = "" # " bgcolor=lightblue" |
|
FS="|" |
|
printf("<table>\n"); |
|
printf("<tr><td>Control Character<td>Octal Code<td>Action Taken\n"); |
|
printf("<tr><td><hr><td><hr><td><hr>\n"); |
|
} |
|
{ |
|
printf("<tr><td><code><%s></code><td>%s<td>%s\n",$1,$2,$3); |
|
} |
|
END { |
|
printf("</table>\n"); |
|
}
|
|
|