Possible Duplicate:
Why can't I fetch http://www.google.com with Perl's LWP::Simple?
code below can be used to open the source page in windows,
but why in linux (slackware) I could not??
#!/usr/bin/perl
print "Content-type: text/html\n\n";
use LWP::Simple;
$URL = get("http://google.com");
print $URL;
Changes: