1Net::Lite::FTP(3) User Contributed Perl Documentation Net::Lite::FTP(3)
2
3
4
6 Net::Lite::FTP - Perl FTP client with support for TLS
7
9 use Net::Lite::FTP;
10 my $tlsftp=Net::Lite::FTP->new();
11 $tlsftp->open("ftp.tls.pl","21");
12 $tlsftp->user("user");
13 $tlsftp->pass("password");
14 $tlsftp->cwd("pub");
15 my $files=$tlsftp->nlst("*.exe");
16 foreach $f (@files) {
17 $tlsftp->get($f);
18 };
19
21 Very simple FTP client with support for TLS
22
24 Net::FTP Tie::FTP
25
26 ftp(1), ftpd(8), RFC 959 http://war.jgaa.com/ftp/rfc/rfc959.txt
27
28 http://war.jgaa.com/ftp/draft/draft-murray-auth-ftp-ssl-03.txt
29
30 http://www.ietf.org/internet-drafts/draft-murray-auth-ftp-ssl-10.txt
31
32 ftp://ftp.ietf.org/internet-drafts/draft-fordh-ftp-ssl-firewall-01.txt
33
35 Dariush Pietrzak,'Eyck' <cpan@ghost.anime.pl>
36
38 Copyright (C) 2005 by Dariush Pietrzak
39
40 This library is free software; you can redistribute it and/or modify it
41 under the same terms as Perl itself, either Perl version 5.8.4 or,
42 at your option, any later version of Perl 5 you may have available.
43
44
45
46perl v5.34.0 2021-07-22 Net::Lite::FTP(3)