我有一个perl脚本,此脚本的输出将被重定向到html页面。但限制是,我不能使用CGI模块,TextToHTML,PrettyPrinter等任何东西。我必须在没有任何此类功能的情况下工作。
输出以表格(.html)格式显示:
____________________________________________________
|Table Name | Changes Found | Action |
|-------------|-------------------|------------------|
|table1 | Record 0 differs | Data Type should |
| | in content | be changed. |
| | | |
|table2 | ... | ... |
-----------------------------------------------------
答案 0 :(得分:3)
使用print语句生成HTML。但是说真的,你必须能够使用模块,CGI是核心并且已经存在了很长时间。