$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

quotemeta

quotemeta EXPR quotemeta Returns the value of EXPR with all the ASCII non-"word" characters backslashed. (That is, all ASCII characters not matching /[A-Za-z_0-9]/ will be preceded by a backslash in the returned string, regardless of any locale settings.) This is the internal function implementing the \Q escape in double-quoted strings. (See below for the behavior on non-ASCII code points.) If EXPR is omitted, uses $_ . quotemeta (and \Q ... \E ) are useful when interpolating strings into regul

FileHandle - supply object methods for filehandles

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME FileHandle - supply object methods for filehandles SYNOPSIS use FileHandle; $fh = FileHandle->new; if ($fh->open("< file")) { print <$fh>; $fh->close; } $fh = FileHandle->new("> FOO"); if (defined $fh) { print $fh "bar\n"; $fh->close; } $fh = FileHandle->new("file", "r"); if (defined $fh) { print <$fh>; undef $fh; # automatically closes the file } $fh = FileHandle->new("file", O_WR

charnames - access to Unicode character names and named character sequences; also define character names

NAME SYNOPSIS DESCRIPTION LOOSE MATCHES ALIASES CUSTOM ALIASES charnames::string_vianame(_name_) charnames::vianame(_name_) charnames::viacode(_code_) CUSTOM TRANSLATORS BUGS NAME charnames - access to Unicode character names and named character sequences; also define character names SYNOPSIS use charnames ':full'; print "\N{GREEK SMALL LETTER SIGMA} is called sigma.\n"; print "\N{LATIN CAPITAL LETTER E WITH VERTICAL LINE BELOW}", " is an officially named sequence of two Unicode charact