setpwent

setpwent

perlpolicy - Various and sundry policies and commitments related to the Perl core

NAME DESCRIPTION GOVERNANCEPerl 5 Porters MAINTENANCE AND SUPPORT BACKWARD COMPATIBILITY AND DEPRECATIONTerminology MAINTENANCE BRANCHESGetting changes into a maint branch CONTRIBUTED MODULESA Social Contract about Artistic Control DOCUMENTATION STANDARDS OF CONDUCT CREDITS NAME perlpolicy - Various and sundry policies and commitments related to the Perl core DESCRIPTION This document is the master document which records all written policies about how the Perl 5 Porters collectively devel

$GID

$GID

sethostent

sethostent STAYOPEN

Getopt::Long - Extended processing of command line options

NAME SYNOPSIS DESCRIPTION Command Line Options, an Introduction Getting Started with Getopt::LongSimple options A little bit less simple options Mixing command line option with other arguments Options with values Options with multiple values Options with hash values User-defined subroutines to handle options Options with multiple names Case and abbreviations Summary of Option Specifications Advanced PossibilitiesObject oriented interface Thread Safety Documentation and help texts Parsing opt

alarm

alarm SECONDS alarm Arranges to have a SIGALRM delivered to this process after the specified number of wallclock seconds has elapsed. If SECONDS is not specified, the value stored in $_ is used. (On some machines, unfortunately, the elapsed time may be up to one second less or more than you specified because of how seconds are counted, and process scheduling may delay the delivery of the signal even further.) Only one timer may be counting at once. Each call disables the previous timer, and an

Pod::Simple::HTMLBatch - convert several Pod files to several HTML files

NAME SYNOPSIS DESCRIPTIONFROM THE COMMAND LINE MAIN METHODSACCESSOR METHODS NOTES ON CUSTOMIZATION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::HTMLBatch - convert several Pod files to several HTML files SYNOPSIS perl -MPod::Simple::HTMLBatch -e 'Pod::Simple::HTMLBatch::go' in out DESCRIPTION This module is used for running batch-conversions of a lot of HTML documents This class is NOT a subclass of Pod::Simple::HTML (nor of bad old Pod::Html) -- although it uses Pod

Term::Cap - Perl termcap interface

NAME SYNOPSIS DESCRIPTIONMETHODS EXAMPLES COPYRIGHT AND LICENSE AUTHOR SEE ALSO NAME Term::Cap - Perl termcap interface SYNOPSIS require Term::Cap; $terminal = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed }; $terminal->Trequire(qw/ce ku kd/); $terminal->Tgoto('cm', $col, $row, $FH); $terminal->Tputs('dl', $count, $FH); $terminal->Tpad($string, $count, $FH); DESCRIPTION These are low-level functions to extract and use capabilities from a terminal capability (termcap

Time::Seconds - a simple API to convert seconds to other date values

NAME SYNOPSIS DESCRIPTION METHODS AUTHOR COPYRIGHT AND LICENSE Bugs NAME Time::Seconds - a simple API to convert seconds to other date values SYNOPSIS use Time::Piece; use Time::Seconds; my $t = localtime; $t += ONE_DAY; my $t2 = localtime; my $s = $t - $t2; print "Difference is: ", $s->days, "\n"; DESCRIPTION This module is part of the Time::Piece distribution. It allows the user to find out the number of minutes, hours, days, weeks or years in a given number of seconds. It is returne

$^

$^ The name of the current top-of-page format for the currently selected output channel. The default is the name of the filehandle with _TOP appended. For example, the default format top name for the STDOUT filehandle is STDOUT_TOP . Mnemonic: points to top of page.