in reply to Grabbing a Web Page
If you want to write it directly to a file (it doesn't sound like you want to do this, but perhaps...), you can use the getstore routine.use LWP::Simple; my $page = get 'http://www.perl.com/';
use LWP::Simple; getstore('http://www.perl.com/', 'foo.html');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Grabbing a Web Page
by Anonymous Monk on Aug 28, 2000 at 00:23 UTC |