如何在不使用任何perl模块(如CGI等)的情况下以html格式显示perl输出

时间:2014-04-04 06:47:13

标签: html html5 perl

我有一个perl脚本,此脚本的输出将被重定向到html页面。但限制是,我不能使用CGI模块,TextToHTML,PrettyPrinter等任何东西。我必须在没有任何此类功能的情况下工作。

输出以表格(.html)格式显示:

 ____________________________________________________ 
|Table Name   |   Changes Found   |   Action         |
|-------------|-------------------|------------------|
|table1       | Record 0 differs  | Data Type should |
|             | in content        | be changed.      |
|             |                   |                  |
|table2       |      ...          |      ...         |
-----------------------------------------------------

1 个答案:

答案 0 :(得分:3)

使用print语句生成HTML。但是说真的,你必须能够使用模块,CGI是核心并且已经存在了很长时间。