我想對此perl腳本使用代理,但我不確定如何使其使用代理。在perl腳本中使用代理
#!/usr/bin/perl
use IO::Socket;
$remote = IO::Socket::INET->new(
Proto => "tcp",
PeerAddr => "localhost",
PeerPort => "8080",
)
or die "cannot connect";
print $remote "GET/HTTP/1.0\n\n";
while (<$remote>) { print }
還在尋找一個非LWP解決方案 – Hintswen 2010-08-03 12:45:48