- 论坛徽章:
- 0
|
我想获取系统的ip地址这样的信息显示在网页里面,我写了下面的代码
系统是blfs 6.3,web服务器是lighttpd,开启了cgi支持,使用的root运行的web server,现在下面的cgi能运行,gmtime()的结果能正常显示,刷新也能改变,问题是@info不能显示,但是在控制台./index.pl这样运行可以正常显示,我知道肯定是我什么地方错了,查了好长时间的google,也没能得出个答案
谢谢大家帮我看看,多谢
#!/usr/bin/perl
use strict;
use warnings;
my @info = `ip add show`;
my $time = gmtime();
print "Content-type: text/html\n\n";
print <<end;
<html>
<head>
<title>测试界面</title>
<link rev="made" href="mailto:lcnja\@qq.com" />
<meta name="keywords" content="lcnja" />
<meta name="copyright" content="copyright 2008 Lcnja" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
@info
$time
</body>
</html>
end |
|