Re: transfer files via FTP ????

2001-05-03 Thread Paul
--- Randall Paulk <[EMAIL PROTECTED]> wrote: > Is there an easy way to transfer files automatically? I would suggest getting libnet or Net::FTP to work (and I'm sorry, I have no suggestions), but as a possible alternative, this from an old script of mine, slightly edited: open(FTP,"|/usr/bin/f

Re: transfer files via FTP ????

2001-05-03 Thread Sean O'Leary
At 12:01 PM 5/3/2001, you wrote: >I have looked through the Programming Perl book and tried the system >command. But it only opens the ftp session and waits for input. I also >tried the Net::FTP module. But it displays a warning during >install. Afterwards, it gives me an error when I try

Re: transfer files via FTP ????

2001-05-03 Thread Nigel G Romeril
Download libnet from the CPAN archive, install and use the ftp module available as part of it Randall Paulk wrote: > I am new to Perl ( and programming in general). I have a seemingly simple task for >which I would like to write a script. Here is the scenario. > > I have four LINUX boxes tha

transfer files via FTP ????

2001-05-03 Thread Randall Paulk
I am new to Perl ( and programming in general). I have a seemingly simple task for which I would like to write a script. Here is the scenario. I have four LINUX boxes that I would like to automatically, once a day, open an FTP session and transfer three files to an FTP server. I have looke