Programming Languages C# Subjective
Mar 13, 2013

Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.

Detailed Explanation

#!/usr/bin/perl
 
use strict;
 
use warnings;
 
use LWP::Simple;
 
my $siteurl = 'www.perlinterview.com/answers.php';
 
my $savefile = 'content.kml';
 
getstore($siteurl, $savefile);

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback