#!/usr/bin/perl -w use strict; use LWP::Simple; for my $i (1..100) { my $page = get("http://www.some.url.com/$i.html"); foo($page); }