- or download this
use strict;
use warnings;
...
else {
print $response->status_line, " <URL:$url>\n";
}
- or download this
use strict;
use warnings;
use LWP::Simple;
getprint ('http://www.cpan.org/');
- or download this
C:\>lwp-download "http://www.cpan.org"
- or download this
open MYHANDLE, "GET http://www.perlmonks.org|";
while(<MYHANDLE>) {
print $_;
}