in reply to Grabbing a hundred pages
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.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Grabbing a hundred pages
by Anonymous Monk on Jun 22, 2001 at 15:24 UTC |