$OLD_PERL_VERSION

$OLD_PERL_VERSION

shmget

shmget KEY,SIZE,FLAGS Calls the System V IPC function shmget. Returns the shared memory segment id, or undef on error. See also SysV IPC in perlipc and IPC::SysV documentation. Portability issues: shmget in perlport.

Unicode::UCD - Unicode character database

NAME SYNOPSIS DESCRIPTIONcode point argument *charinfo()* *charprop()* *charprops_all()* *charblock()* *charscript()* *charblocks()* *charscripts()* *charinrange()* *general_categories()* *bidi_types()* *compexcl()* *casefold()* *all_casefolds()* *casespec()* *namedseq()* *num()* *prop_aliases()* *prop_values()* *prop_value_aliases()* *prop_invlist()* *prop_invmap()* *search_invlist()* Unicode::UCD::UnicodeVersion *Blocks versus Scripts* *Matching Scripts and Blocks* Old-style versus new-style

Test::Builder - Backend for building test libraries

NAME SYNOPSIS DESCRIPTIONConstruction Setting up tests Running tests Other Testing Methods Test building utility methods Test style Output Test Status and Info EXIT CODES THREADS MEMORY EXAMPLES SEE ALSO AUTHORS MAINTAINERS COPYRIGHT NAME Test::Builder - Backend for building test libraries SYNOPSIS package My::Test::Module; use base 'Test::Builder::Module'; my $CLASS = __PACKAGE__; sub ok { my($test, $name) = @_; my $tb = $CLASS->builder; $tb->ok($test, $name); } DESCR

$/

$/ The input record separator, newline by default. This influences Perl's idea of what a "line" is. Works like awk's RS variable, including treating empty lines as a terminator if set to the null string (an empty line cannot contain any spaces or tabs). You may set it to a multi-character string to match a multi-character terminator, or to undef to read through the end of file. Setting it to "\n\n" means something slightly different than setting to "" , if the file contains consecutive empty l

O - Generic interface to Perl Compiler backends

NAME SYNOPSIS DESCRIPTION CONVENTIONS IMPLEMENTATION BUGS AUTHOR NAME O - Generic interface to Perl Compiler backends SYNOPSIS perl -MO=[-q,]Backend[,OPTIONS] foo.pl DESCRIPTION This is the module that is used as a frontend to the Perl Compiler. If you pass the -q option to the module, then the STDOUT filehandle will be redirected into the variable $O::BEGIN_output during compilation. This has the effect that any output printed to STDOUT by BEGIN blocks or use'd modules will be stored in thi

%-

%- Similar to %+ , this variable allows access to the named capture groups in the last successful match in the currently active dynamic scope. To each capture group name found in the regular expression, it associates a reference to an array containing the list of values captured by all buffers with that name (should there be several of them), in the order where they appear. Here's an example: if ('1234' =~ /(?<A>1)(?<B>2)(?<A>3)(?<B>4)/) { foreach my $bufname (sort

shmread

shmread ID,VAR,POS,SIZE

perlqnx - Perl version 5 on QNX

NAME DESCRIPTIONRequired Software for Compiling Perl on QNX4 Outstanding Issues with Perl on QNX4 QNX auxiliary files Outstanding issues with perl under QNX6 Cross-compilation AUTHOR NAME perlqnx - Perl version 5 on QNX DESCRIPTION As of perl5.7.2 all tests pass under: QNX 4.24G Watcom 10.6 with Beta/970211.wcc.update.tar.F socket3r.lib Nov21 1996. As of perl5.8.1 there is at least one test still failing. Some tests may complain under known circumstances. See below and hints/qnx.sh for mor

lcfirst

lcfirst EXPR lcfirst Returns the value of EXPR with the first character lowercased. This is the internal function implementing the \l escape in double-quoted strings. If EXPR is omitted, uses $_ . This function behaves the same way under various pragmata, such as in a locale, as lc does.