Lawrence Statton wrote:
#
# open a connection to some host (I need passive mode here
# to get around my firewall, you may not, which case you
# can leave it out )
#
my $ftp = Net::FTP->new('your-host.com', Passive => 1) || die "Cannot connect to host: $@";
warn"Connection made";
That stateme
> --0-1181151836-1101950943=:60409
> Content-Type: text/plain; charset=us-ascii
>
>
> I'm very new to perl, can any share an example ftp script? I need to
> ftp from one server directory to another server to a
> directory
>
first, read the following:
perldoc Net::FTP
#!/usr/bin/perl
use st
Carl Johnson wrote:
I'm very new to perl, can any share an example ftp script? I need to
ftp from one server directory to another server to a
directory
I think Net::FTP has some examples, see search.cpan.org :)
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL