$^T

$^T The time at which the program began running, in seconds since the epoch (beginning of 1970). The values returned by the -M, -A, and -C filetests are based on this value.

ExtUtils::MM_VMS - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTIONMethods always loaded Methods AUTHOR NAME ExtUtils::MM_VMS - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS Do not use this directly. Instead, use ExtUtils::MM and it will figure out which MM_* class to use for you. DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. Methods always loaded wraplist Converts a list into a string wrapped

foreach

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

$EXECUTABLE_NAME

$EXECUTABLE_NAME

ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix

NAME SYNOPSIS DESCRIPTIONOverridden methods AUTHOR SEE ALSO NAME ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix SYNOPSIS Don't use this module directly. Use ExtUtils::MM and let it choose. DESCRIPTION This is a subclass of ExtUtils::MM_Unix which contains functionality for AIX. Unless otherwise stated it works just like ExtUtils::MM_Unix Overridden methods dlsyms Define DL_FUNCS and DL_VARS and write the *.exp files. AUTHOR Michael G Schwern <schwern@pobox.com> with cod

$~

$~ The name of the current report format for the currently selected output channel. The default format name is the same as the filehandle name. For example, the default format name for the STDOUT filehandle is just STDOUT . Mnemonic: brother to $^ .

HANDLE-&gt;autoflush( EXPR )

HANDLE->autoflush( EXPR )

perlcommunity - a brief overview of the Perl community

NAME DESCRIPTIONWhere to Find the Community Mailing Lists and Newsgroups IRC Websites User Groups Workshops Hackathons Conventions Calendar of Perl Events AUTHOR NAME perlcommunity - a brief overview of the Perl community DESCRIPTION This document aims to provide an overview of the vast perl community, which is far too large and diverse to provide a detailed listing. If any specific niche has been forgotten, it is not meant as an insult but an omission for the sake of brevity. The Perl comm

IPC::Open2 - open a process for both reading and writing using open2()

NAME SYNOPSIS DESCRIPTION WARNING SEE ALSO NAME IPC::Open2 - open a process for both reading and writing using open2() SYNOPSIS use IPC::Open2; $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'some cmd and args'); # or without using the shell $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'some', 'cmd', 'and', 'args'); # or with handle autovivification my($chld_out, $chld_in); $pid = open2($chld_out, $chld_in, 'some cmd and args'); # or without using the shell $pid = open2($chld_out, $chld_in, 'some', 'cmd',

Benchmark - benchmark running times of Perl code

NAME SYNOPSIS DESCRIPTIONMethods Standard Exports Optional Exports :hireswallclock Benchmark Object NOTES EXAMPLES INHERITANCE CAVEATS SEE ALSO AUTHORS MODIFICATION HISTORY NAME Benchmark - benchmark running times of Perl code SYNOPSIS use Benchmark qw(:all) ; timethis ($count, "code"); # Use Perl code in strings... timethese($count, { 'Name1' => '...code1...', 'Name2' => '...code2...', }); # ... or use subroutine references. timethese($count, { 'Name1' => s