$COMPILING

$COMPILING

Exporter - Implements default import method for modules

NAME SYNOPSIS DESCRIPTIONHow to Export Selecting What to Export How to Import Advanced FeaturesSpecialised Import Lists Exporting Without Using Exporter's import Method Exporting Without Inheriting from Exporter Module Version Checking Managing Unknown Symbols Tag Handling Utility Functions Generating Combined Tags AUTOLOADed Constants Good PracticesDeclaring @EXPORT_OK and Friends Playing Safe What Not to Export SEE ALSO LICENSE NAME Exporter - Implements default import method for modu

CPAN::HandleConfig - internal configuration handling for CPAN.pm

NAMECLASS->safe_quote ITEM LICENSE NAME CPAN::HandleConfig - internal configuration handling for CPAN.pm CLASS->safe_quote ITEM Quotes an item to become safe against spaces in shell interpolation. An item is enclosed in double quotes if: - the item contains spaces in the middle - the item does not start with a quote This happens to avoid shell interpolation problems when whitespace is present in directory names. This method uses commands_quote to determine the correct quote. If comm

Pod::Man - Convert POD data to formatted *roff input

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS CAVEATS AUTHOR COPYRIGHT AND LICENSE SEE ALSO NAME Pod::Man - Convert POD data to formatted *roff input SYNOPSIS use Pod::Man; my $parser = Pod::Man->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_file (\*STDIN); # Read POD from file.pod and write to file.1. $parser->parse_from_file ('file.pod', 'file.1'); DESCRIPTION Pod::Man is a module to convert documentation in the POD format

UNITCHECK

UNITCHECK These compile phase keywords are documented in BEGIN, UNITCHECK, CHECK, INIT and END in perlmod.

$!

$! When referenced, $! retrieves the current value of the C errno integer variable. If $! is assigned a numerical value, that value is stored in errno . When referenced as a string, $! yields the system error string corresponding to errno . Many system or library calls set errno if they fail, to indicate the cause of failure. They usually do not set errno to zero if they succeed. This means errno , hence $! , is meaningful only immediately after a failure: if (open my $fh, "<", $filename)

${^UTF8CACHE}

${^UTF8CACHE} This variable controls the state of the internal UTF-8 offset caching code. 1 for on (the default), 0 for off, -1 to debug the caching code by checking all its results against linear scans, and panicking on any discrepancy. This variable was added in Perl v5.8.9. It is subject to change or removal without notice, but is currently used to avoid recalculating the boundaries of multi-byte UTF-8-encoded characters.

qx

qx/STRING/ Generalized quotes. See Quote-Like Operators in perlop.

elsif

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

perlipc - Perl interprocess communication (signals, fifos, pipes, safe subprocesses, sockets, and semaphores)

NAME DESCRIPTION SignalsHandling the SIGHUP Signal in Daemons Deferred Signals (Safe Signals) Named Pipes Using open() for IPCFilehandles Background Processes Complete Dissociation of Child from Parent Safe Pipe Opens Avoiding Pipe Deadlocks Bidirectional Communication with Another Process Bidirectional Communication with Yourself Sockets: Client/Server CommunicationInternet Line Terminators Internet TCP Clients and Servers Unix-Domain TCP Clients and Servers TCP Clients with IO::SocketA