On Thu, Dec 13, 2001 at 06:42:17AM -0600, Michael Pratt wrote:
> Does anyone know how to go and get a file (with wild cards too) and dump
> them to a specifed directory on a local machine from the internet. weather
> it be ftp or http protocol? If so can I get an example?
You probably want LWP:
Michael Pratt wrote:
>
> Does anyone know how to go and get a file (with wild cards too) and dump
> them to a specifed directory on a local machine from the internet. weather
> it be ftp or http protocol? If so can I get an example?
#!/usr/bin/perl -w
use strict;
use Net::FTP;
my $local_dir =
Does anyone know how to go and get a file (with wild cards too) and dump
them to a specifed directory on a local machine from the internet. weather
it be ftp or http protocol? If so can I get an example?
Thanks for all your help!
Mike
_