in reply to Re: iitterator variable in a LWP-UA-code snippet
in thread itterator variable in a LWP-UA-code snippet

hello Ken; hello Anonymous Monk -thx for the reply!

@ken: guess that you are right want to loop through (1 .. 10000), not (0 .. 10000).


i am going to try it out with

%02d while $i < 10

i come back and report all my findings

regards beginnner

update

String concatenation:

#!/usr/bin/env perl use 5.12.0; use warnings; use LWP::Simple; use Data::Dumper; say Dumper({ map { $_ => eval { get 'http://example.com/'.$_ }, } 0..1 +000 });


i try this out! thx.
i come back and report