/usr/share/perl5/IO/All/FTP.pm is in libio-all-lwp-perl 0.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | package IO::All::FTP;
use strict;
use warnings;
our $VERSION = '0.14';
use IO::All::LWP '-base';
const type => 'ftp';
sub ftp { my $self=shift; $self->lwp_init(__PACKAGE__, @_) }
1;
__END__
=head1 NAME
IO::All::FTP - Extends IO::All to FTP URLs
=head1 SYNOPSIS
use IO::All;
"hello world\n" > io('ftp://localhost/test/x'); # save to FTP
io('ftp//example.org/pub/xyz') > io('xyz'); # GET to file
# two ways of getting a file with a password:
$content < io('ftp://me:secret@example.org/xyz');
$content < io('ftp://example.org/xyz')->user('me')->password('secret');
=head1 DESCRIPTION
This module extends IO::All for dealing with FTP URLs.
Note that you don't need to use it explicitly, as it is autoloaded by
L<IO::All> whenever it sees something that looks like an FTP URL.
=head1 METHODS
This is a subclass of L<IO::All::LWP>. The only new method is C<ftp>, which
can be used to create a blank L<IO::All::FTP> object; or it can also take an
FTP URL as a parameter. Note that in most cases it is simpler just to call
io('ftp//example.com'), which calls the C<ftp> method automatically.
=head1 OPERATOR OVERLOADING
The same operators from IO::All may be used. < GETs an FTP URL; > PUTs to
an FTP URL.
=head1 SEE ALSO
L<IO::All::LWP>, L<IO::All>, L<LWP>.
=head1 AUTHORS
Ivan Tubert-Brohman <itub@cpan.org> and
Brian Ingerson <ingy@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2007. Ivan Tubert-Brohman and Brian Ingerson. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
|