http://qs321.pair.com?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

Replies are listed 'Best First'.
Re^2: Download PDF's
by Godsrock37 (Sexton) on Jun 19, 2008 at 15:04 UTC

    haha, thanks b10m that looks awesome. i think i'm set then