Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.
Home
Perl
Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.
0
votes
asked
Jul 26, 2023
in
Perl
by
rahuljain1
Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.
perl-program
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 26, 2023
by
rahuljain1
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
my $siteurl = 'www.perlinterview.com/answers.php';
my $savefile = 'content.kml';
getstore($siteurl, $savefile);
...