how to get html page by perl
#how to get html page by perl
use strict;
use warnings;
use LWP::Simple;
my $value ="http://bioinfoconcepts.blogspot.in/";
my $status = getstore($value, 'anop_singh_ranawat.html');
unless (is_success($status)) {
die "An error has occured! Status code: $status\n";
}
use strict;
use warnings;
use LWP::Simple;
my $value ="http://bioinfoconcepts.blogspot.in/";
my $status = getstore($value, 'anop_singh_ranawat.html');
unless (is_success($status)) {
die "An error has occured! Status code: $status\n";
}
Comments
Post a Comment