in reply to Re: Re: Re: In need of guidance....
in thread Program that will grep website for specified keyword
#!/usr/bin/perl use strict; use warnings; use LWP::Simple; my $res_code = getstore('http://www.perlmonks.org/','index.html'); die "Download failed! Response code is $res_code.\n" if $res_code != 2 +00; # continue processing here
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: In need of guidance....
by Popcorn Dave (Abbot) on Apr 25, 2002 at 02:59 UTC |