http://www.perlmonks.org?node_id=692937


in reply to Re^2: Download PDF's
in thread Download PDF's

Even easier:

use strict; use LWP::Simple qw/getstore/; my $url = "http://blahblah/file.pdf"; my $file = "/home/user/file.pdf"; getstore($url, $file);
--
b10m