可能重复:
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;
答案 0 :(得分:0)
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
print "Content-type: text/html\n\n";
print get('http://google.com');
的变化: