Saving an image from external site

A

asdfq213rr23we

Hi

In Perl, how can I grab an image through its URL and save it on my
server?

Ex: save www.site.com/image.jpg onto a dir on my server (another.com)

Im looking at setting a cronjob that through this perl script grabs
this specific image once an hour and puts it on my server

Thanks
 
C

Chris Mattern

Hi

In Perl, how can I grab an image through its URL and save it on my
server?

Ex: save www.site.com/image.jpg onto a dir on my server (another.com)

Im looking at setting a cronjob that through this perl script grabs
this specific image once an hour and puts it on my server

Thanks

You want LWP::Simple. In fact, you may want to dispense with Perl
altogether and use wget, but LWP::Simple is the way to go if you
want to use Perl.

--
Christopher Mattern

"Which one you figure tracked us?"
"The ugly one, sir."
"...Could you be more specific?"
 
G

Gregory Toomey

Chris said:
You want LWP::Simple. In fact, you may want to dispense with Perl
altogether and use wget, but LWP::Simple is the way to go if you
want to use Perl.

I use cron & wget:
13,28,43,58 * * * * wget http://XXX.com -O /home/aaa/XXX >/dev/null 2>&1

gtoomey
 
T

Tad McClellan

In Perl, how can I grab an image through its URL


The same way you grab HTML through its URL.

perldoc -q HTML

How do I fetch an HTML file?

and save it on my
server?


That depends on what kind of access you have to this "server".

Im looking at setting a cronjob


On this "server" or somewhere else?

that through this perl script grabs
this specific image
once an hour and puts it on my server


use LWP::Simple for downloading the image.

We can't help with how to put it on your server if we don'
know what access you have available to you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top