.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Net::Netrc 3perl" .TH Net::Netrc 3perl "2021-09-24" "perl v5.32.1" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Net::Netrc \- OO interface to users netrc file .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use Net::Netrc; \& \& $mach = Net::Netrc\->lookup(\*(Aqsome.machine\*(Aq); \& $login = $mach\->login; \& ($login, $password, $account) = $mach\->lpa; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\f(CW\*(C`Net::Netrc\*(C'\fR is a class implementing a simple interface to the .netrc file used as by the ftp program. .PP \&\f(CW\*(C`Net::Netrc\*(C'\fR 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. .SH "THE .netrc FILE" .IX Header "THE .netrc FILE" 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: .IP "machine name" 4 .IX Item "machine name" Identify a remote machine name. The auto-login process searches the .netrc file for a machine token that matches the remote machine specified. Once a match is made, the subsequent .netrc tokens are processed, stopping when the end of file is reached or an\- other machine or a default token is encountered. .IP "default" 4 .IX Item "default" This is the same as machine name except that default matches any name. There can be only one default token, and it must be after all machine tokens. This is normally used as: .Sp .Vb 1 \& default login anonymous password user@site .Ve .Sp thereby giving the user automatic anonymous login to machines not specified in .netrc. .IP "login name" 4 .IX Item "login name" Identify a user on the remote machine. If this token is present, the auto-login process will initiate a login using the specified name. .IP "password string" 4 .IX Item "password string" Supply a password. If this token is present, the auto-login process will supply the specified string if the remote server requires a password as part of the login process. .IP "account string" 4 .IX Item "account string" Supply an additional account password. If this token is present, the auto-login process will supply the specified string if the remote server requires an additional account password. .IP "macdef name" 4 .IX Item "macdef name" Define a macro. \f(CW\*(C`Net::Netrc\*(C'\fR only parses this field to be compatible with \fIftp\fR. .SH "CONSTRUCTOR" .IX Header "CONSTRUCTOR" The constructor for a \f(CW\*(C`Net::Netrc\*(C'\fR object is not called new as it does not really create a new object. But instead is called \f(CW\*(C`lookup\*(C'\fR as this is essentially what it does. .IP "lookup ( \s-1MACHINE\s0 [, \s-1LOGIN\s0 ])" 4 .IX Item "lookup ( MACHINE [, LOGIN ])" Lookup and return a reference to the entry for \f(CW\*(C`MACHINE\*(C'\fR. If \f(CW\*(C`LOGIN\*(C'\fR is given then the entry returned will have the given login. If \f(CW\*(C`LOGIN\*(C'\fR is not given then the first entry in the .netrc file for \f(CW\*(C`MACHINE\*(C'\fR will be returned. .Sp If a matching entry cannot be found, and a default entry exists, then a reference to the default entry is returned. .Sp If there is no matching entry found and there is no default defined, or no .netrc file is found, then \f(CW\*(C`undef\*(C'\fR is returned. .SH "METHODS" .IX Header "METHODS" .IP "login ()" 4 .IX Item "login ()" Return the login id for the netrc entry .IP "password ()" 4 .IX Item "password ()" Return the password for the netrc entry .IP "account ()" 4 .IX Item "account ()" Return the account information for the netrc entry .IP "lpa ()" 4 .IX Item "lpa ()" Return a list of login, password and account information for the netrc entry .SH "AUTHOR" .IX Header "AUTHOR" Graham Barr <\fIgbarr@pobox.com\fR>. .PP Steve Hay <\fIshay@cpan.org\fR> is now maintaining libnet as of version 1.22_02. .SH "SEE ALSO" .IX Header "SEE ALSO" Net::Netrc, Net::Cmd .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (C) 1995\-1998 Graham Barr. All rights reserved. .PP Copyright (C) 2013\-2014 Steve Hay. All rights reserved. .SH "LICENCE" .IX Header "LICENCE" 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 \s-1GNU\s0 General Public License or the Artistic License, as specified in the \fI\s-1LICENCE\s0\fR file.