To get a hundred numbered pages, you could do something like this:#!/usr/bin/perl -w use strict; use LWP::Simple; my $page = get('http://www.example.com/'); print $page;
my @ary; foreach (1..100) { push @ary, get("http://www.example.com/$_.html") }
andy.
In reply to Re: Grabbing a hundred pages
by andye
in thread Grabbing a hundred pages
by costas
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |