in reply to need to download large .tgz file from secure site

Hello,

I've used something like the following in my code to download big files:

use LWP::Simple qw(getstore);
getstore( $url, '/tmp/local.tgz' );

See the LWP::Simple docs for more info.

Hope this helps,

trwww

  • Comment on Re: need to download large .tgz file from secure site