philipp traeder wrote:
"perldoc Net::FTP" is your friend - there you'll find documentation for the
put() method, which should be what you want.
Basically, you just need to extend your script a bit - something like:
my $ftp = Net::FTP->new(...);
$ftp->login("username", "password");
# change the w
Hi all,
I'm a newbie to Perl - I'm having to dip in and try and do some coding
as I need a script that will move a file from one server to another. I
believe this can be done with the Net::FTP object.
I've played around whit this a fair bit, and I think this script should
work..
#!/usr/bin/pe