Net::Netrc - OO interface to users netrc file |
Net::Netrc - OO interface to users netrc file
use Net::Netrc;
$mach = Net::Netrc->lookup('some.machine'); $login = $mach->login; ($login, $password, $account) = $mach->lpa;
Net::Netrc
is a class implementing a simple interface to the .netrc file
used as by the ftp program.
Net::Netrc
also implements security checks just like the ftp program,
these checks are, first that the .netrc file must be owned by the user and
second the ownership permissions should be such that only the owner has
read and write access. If these conditions are not met then a warning is
output and the .netrc file is not read.
The .netrc file contains login and initialization information used by the auto-login process. It resides in the user's home directory. The following tokens are recognized; they may be separated by spaces, tabs, or new-lines:
default login anonymous password user@site
thereby giving the user automatic anonymous login to machines not specified in .netrc.
Net::Netrc
only parses this field to be compatible
with ftp.
The constructor for a Net::Netrc
object is not called new as it does not
really create a new object. But instead is called lookup
as this is
essentially what it does.
MACHINE
. If LOGIN
is given
then the entry returned will have the given login. If LOGIN
is not given then
the first entry in the .netrc file for MACHINE
will be returned.
If a matching entry cannot be found, and a default entry exists, then a reference to the default entry is returned.
If there is no matching entry found and there is no default defined, or
no .netrc file is found, then undef
is returned.
Graham Barr <gbarr@pobox.com>.
Steve Hay <shay@cpan.org> is now maintaining libnet as of version 1.22_02.
the Net::Netrc manpage, the Net::Cmd manpage
Copyright (C) 1995-1998 Graham Barr. All rights reserved.
Copyright (C) 2013-2014 Steve Hay. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e. under the terms of either the GNU General Public License or the Artistic License, as specified in the LICENCE file.
Net::Netrc - OO interface to users netrc file |