Does Perl support internet? -


i try write in perl script down loading file website. script must automatically down load @ night. perl support internet? use perl 5 centos , gedit.

use file::fetch; $url = 'http://domain.tld/path'; $ff = file::fetch->new(uri => $url); $file = $ff->fetch() or die $ff->error; print "check $file\n"; 

put in script , ...


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -