$REAL_USER_ID

$REAL_USER_ID

if

if These flow-control keywords are documented in Compound Statements in perlsyn.

$PROCESS_ID

$PROCESS_ID

I18N::Langinfo - query locale information

NAME SYNOPSIS DESCRIPTIONEXPORT SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME I18N::Langinfo - query locale information SYNOPSIS use I18N::Langinfo; DESCRIPTION The langinfo() function queries various locale information that can be used to localize output and user interfaces. The langinfo() requires one numeric argument that identifies the locale constant to query: if no argument is supplied, $_ is used. The numeric constants appropriate to be used as arguments are exportable from I18N::Langin

TAP::Parser::Scheduler - Schedule tests during parallel testing

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Rules data structure Instance Methods NAME TAP::Parser::Scheduler - Schedule tests during parallel testing VERSION Version 3.35 SYNOPSIS use TAP::Parser::Scheduler; DESCRIPTION METHODS Class Methods new my $sched = TAP::Parser::Scheduler->new(tests => \@tests); my $sched = TAP::Parser::Scheduler->new( tests => [ ['t/test_name.t','Test Description'], ... ], rules => \%rules, ); Given 'tests' and optional 'rules

Pod::Simple::PullParserEndToken -- end-tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserEndToken -- end-tokens from Pod::Simple::PullParser SYNOPSIS (See Pod::Simple::PullParser) DESCRIPTION When you do $parser->get_token on a Pod::Simple::PullParser, you might get an object of this class. This is a subclass of Pod::Simple::PullParserToken and inherits all its methods, and adds these methods: $token->tagname This returns the tagname for this end-token object. For exampl

Net::FTP - FTP Client class

NAME SYNOPSIS DESCRIPTION OVERVIEW CONSTRUCTOR METHODSMethods for the adventurous THE dataconn CLASS UNIMPLEMENTED REPORTING BUGS AUTHOR SEE ALSO USE EXAMPLES CREDITS COPYRIGHT NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot login ", $ftp->message; $ftp->cwd("/pub") or die "Cannot change working directory ", $f

FileCache - keep more files open than the system permits

NAME SYNOPSIS DESCRIPTION CAVEATS BUGS NAME FileCache - keep more files open than the system permits SYNOPSIS no strict 'refs'; use FileCache; # or use FileCache maxopen => 16; cacheout $mode, $path; # or cacheout $path; print $path @data; $fh = cacheout $mode, $path; # or $fh = cacheout $path; print $fh @data; DESCRIPTION The cacheout function will make sure that there's a filehandle open for reading or writing available as the pathname you give it. It automatically closes and re-open

TAP::Parser - Parse TAP output

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods INDIVIDUAL RESULTSResult types Common type methods plan methods pragma methods comment methods bailout methods unknown methods test methods TOTAL RESULTSIndividual Results Pragmas Summary Results ignore_exit CALLBACKS TAP GRAMMAR BACKWARDS COMPATIBILITYDifferences SUBCLASSINGParser Components ACKNOWLEDGMENTS AUTHORS BUGS COPYRIGHT & LICENSE NAME TAP::Parser - Parse TAP output VERSION Version 3.35 SYNOPSIS use

SDBM_File - Tied access to sdbm files

NAME SYNOPSIS DESCRIPTIONTie EXPORTS DIAGNOSTICSsdbm store returned -1, errno 22, key "..." at ... BUGS AND WARNINGS NAME SDBM_File - Tied access to sdbm files SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use SDBM_File; tie(%h, 'SDBM_File', 'filename', O_RDWR|O_CREAT, 0666) or die "Couldn't tie SDBM file 'filename': $!; aborting"; # Now read and change the hash $h{newkey} = newvalue; print $h{oldkey}; ... untie %h; DESCRIPTION SDBM_File establishes a connection between a Perl ha