Wednesday, November 23, 2022

Downloading and printing html css code of a page using perl and lwp

 use strict;
use warnings;
use LWP::Simple;
sub main{
print "Downloading ... \n";
print get("http://www.google.com/");
print "Finished\n";
}
main();

No comments:

Post a Comment