Re: Copy files from a location

2001-12-14 Thread Michael Fowler
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:

Re: Copy files from a location

2001-12-13 Thread John W. Krahn
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 =

Copy files from a location

2001-12-13 Thread Michael Pratt
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 _