NAME
Net::FTP::Find::Mixin - Inject the function of Net::FTP::Find
SYNOPSIS
use
Net::FTP;
my
$ftp
= Net::FTP->new(
'localhost'
);
$ftp
->login(
'user'
,
'pass'
);
$ftp
->find(
sub
{ ... },
'/'
);
or
use
Net::FTP::Subclass;
my
$sub
= Net::FTP::Subclass->new(
'localhost'
);
$sub
->login(
'user'
,
'pass'
);
$sub
->find(
sub
{ ... },
'/'
);
or
use
Net::FTPSSL;
my
$ftp
= Net::FTPSSL->new(
'localhost'
);
$ftp
->login(
'user'
,
'pass'
);
$ftp
->find(
sub
{ ... },
'/'
);
AUTHOR
Taku Amano <taku@toi-planning.net>
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.