in reply to Grabbing a hundred pages

You probably want to use the module LWP::Simple, like this...
#!/usr/bin/perl -w use strict; use LWP::Simple; my $page = get('http://www.example.com/'); print $page;
To get a hundred numbered pages, you could do something like this:
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
    Or:
    my @pages = map {get("http://www.example.com/$_.html")} 1..100;