You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
345 B
Perl

use IO::Socket;
$socket = IO::Socket::INET->new
(
Proto => "tcp",
PeerAddr => "reference.perl.com",
PeerPort => 80,
);
$socket->autoflush(1);
print $socket "GET /query.cgi?cgi HTTP/1.0\015\012\015\012";
open FILEHANDLE, ">local.html";
while (<$socket>) {
print FILEHANDLE;
}
close FILEHANDLE;
close $socket;