Perl无法在slackware上打开源页面

时间:2012-04-21 13:19:12

标签: perl

  

可能重复:
  Why can't I fetch www.google.com with Perl's LWP::Simple?

下面的代码可用于在Windows中打开源页面,

但为什么在Linux(slackware)中我不能?

#!/usr/bin/perl
print "Content-type: text/html\n\n";
use LWP::Simple;
$URL = get("http://google.com");
print $URL;

1 个答案:

答案 0 :(得分:0)

#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;

print "Content-type: text/html\n\n";
print get('http://google.com');

的变化:

  • 始终(!)使用严格和警告。
  • 将use语句移至脚本开头。
  • 消除$ URL的使用 - 即使没有它,get()调用也会失败。