in reply to Re^2: using proxy servers with lwp::simple or useragent
in thread using proxy servers with lwp::simple or useragent
use strict; use warnings; use LWP::Simple; my @list = qw(211.202.1.52:80 61.139.87.132:80 72.13.246.65:3128 203.1 +15.10.11:80 203.115.10.38:80); foreach my $prox (@list) { $ENV{HTTP_proxy}= $prox; my $url = "www.sensationalscentsonline.com"; print "$prox attempted..\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: using proxy servers with lwp::simple or useragent
by merlyn (Sage) on Mar 22, 2006 at 05:14 UTC |