anancontigger has asked for the wisdom of the Perl Monks concerning the following question:
============12/3/08===============$browser->agent("lwp-download " . $browser->agent); my $req = HTTP::Request->new(GET => $ueTar); $req->authorization_basic("$p4idpw", "$p4idpw"); my $ret = $browser->request($req); my $ueFH = new FileHandle; open $ueFH, "> my.tgz"; print $ueFH $ret->content; close $ueFH;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: need to download large .tgz file from secure site
by ikegami (Patriarch) on Dec 03, 2008 at 03:40 UTC | |
|
Re: need to download large .tgz file from secure site
by almut (Canon) on Dec 03, 2008 at 03:22 UTC | |
|
Re: need to download large .tgz file from secure site
by trwww (Priest) on Dec 03, 2008 at 12:09 UTC | |
|
Re: need to download large .tgz file from secure site
by zentara (Cardinal) on Dec 03, 2008 at 13:54 UTC |