perlce - Perl for WinCE

NAME Building Perl for WinCEWARNING DESCRIPTION General explanations on cross-compiling WinCE CURRENT BUILD INSTRUCTIONS OLD BUILD INSTRUCTIONS Using Perl on WinCEDESCRIPTION LIMITATIONS ENVIRONMENT REGISTRY XS BUGS INSTALLATION ACKNOWLEDGEMENTS History of WinCE port AUTHORS NAME perlce - Perl for WinCE Building Perl for WinCE WARNING Much of this document has become very out of date and needs updating, rewriting or deleting. The build process was overhauled during the 5.19 development tr

Pod::Simple::Search - find POD documents in directory trees

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR ACCESSORS MAIN SEARCH METHODS$search->survey( @directories ) $search->simplify_name( $str ) $search->find( $pod ) $search->find( $pod, @search_dirs ) $self->contains_pod( $file ) COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Search - find POD documents in directory trees SYNOPSIS use Pod::Simple::Search; my $name2path = Pod::Simple::Search->new->limit_glob('LWP::*')->survey; print "Looky see what I found: ", join(' ', sort

warn

warn LIST Prints the value of LIST to STDERR. If the last element of LIST does not end in a newline, it appends the same file/line number text as die does. If the output is empty and $@ already contains a value (typically from a previous eval) that value is used after appending "\t...caught" to $@ . This is useful for staying almost, but not entirely similar to die. If $@ is empty then the string "Warning: Something's wrong" is used. No message is printed if there is a $SIG{__WARN__} handler in

getservent

getservent

lib - manipulate @INC at compile time

NAME SYNOPSIS DESCRIPTIONAdding directories to @INC Deleting directories from @INC Restoring original @INC CAVEATS NOTES SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME lib - manipulate @INC at compile time SYNOPSIS use lib LIST; no lib LIST; DESCRIPTION This is a small simple module which simplifies the manipulation of @INC at compile time. It is typically used to add extra directories to perl's search path so that later use or require statements will find modules which are not located on per

$-

$- The number of lines left on the page of the currently selected output channel. Mnemonic: lines_on_page - lines_printed.

$*

$* $* was a variable that you could use to enable multiline matching. After a deprecation cycle, its magic was removed in Perl v5.10.0. Using it now triggers a warning: $* is no longer supported. You should use the /s and /m regexp modifiers instead. Deprecated in Perl 5. Removed in Perl v5.10.0.

perlnumber - semantics of numbers and numeric operations in Perl

NAME SYNOPSIS DESCRIPTION Storing numbers Numeric operators and numeric conversions Flavors of Perl numeric operations AUTHOR SEE ALSO NAME perlnumber - semantics of numbers and numeric operations in Perl SYNOPSIS $n = 1234; # decimal integer $n = 0b1110011; # binary integer $n = 01234; # octal integer $n = 0x1234; # hexadecimal integer $n = 12.34e-56; # exponential notation $n = "-12.34e56"; # number specified as a string $n = "1234"; # number specified as a str

$EFFECTIVE_GROUP_ID

$EFFECTIVE_GROUP_ID

perlrebackslash - Perl Regular Expression Backslash Sequences and Escapes

NAME DESCRIPTIONThe backslash All the sequences and escapes Character Escapes Modifiers Character classes Referencing Assertions Misc NAME perlrebackslash - Perl Regular Expression Backslash Sequences and Escapes DESCRIPTION The top level documentation about Perl regular expressions is found in perlre. This document describes all backslash and escape sequences. After explaining the role of the backslash, it lists all the sequences that have a special meaning in Perl regular expressions (in