$^W

$^W The current value of the warning switch, initially true if -w was used, false otherwise, but directly modifiable. See also warnings. Mnemonic: related to the -w switch.

Test::More - yet another framework for writing test scripts

NAME SYNOPSIS DESCRIPTIONI love it when a plan comes together Test names I'm ok, you're not ok. Module tests Complex data structures Diagnostics Conditional tests Test control Discouraged comparison functions Extending and Embedding Test::More EXIT CODES COMPATIBILITY CAVEATS and NOTES HISTORY SEE ALSOALTERNATIVES TESTING FRAMEWORKS ADDITIONAL LIBRARIES OTHER COMPONENTS BUNDLES AUTHORS MAINTAINERS BUGS SOURCE COPYRIGHT NAME Test::More - yet another framework for writing test scripts SYNOP

DB - programmatic interface to the Perl debugging API

NAME SYNOPSIS DESCRIPTIONGlobal Variables API Methods Client Callback Methods BUGS AUTHOR NAME DB - programmatic interface to the Perl debugging API SYNOPSIS package CLIENT; use DB; @ISA = qw(DB); # these (inherited) methods can be called by the client CLIENT->register() # register a client package name CLIENT->done() # de-register from the debugging API CLIENT->skippkg('hide::hide') # ask DB not to stop in this package CLIENT->cont([WHERE]) # run some mor

perlretut - Perl regular expressions tutorial

NAME DESCRIPTION Part 1: The basicsSimple word matching Using character classes Matching this or that Grouping things and hierarchical matching Extracting matches Backreferences Relative backreferences Named backreferences Alternative capture group numbering Position information Non-capturing groupings Matching repetitions Possessive quantifiers Building a regexp Using regular expressions in Perl Part 2: Power toolsMore on characters, strings, and character classes Compiling and saving regul

getnetbyname

getnetbyname NAME

$^R

$^R The result of evaluation of the last successful (?{ code }) regular expression assertion (see perlre). May be written to. This variable was added in Perl 5.005.

__PACKAGE__

__PACKAGE__ A special token that returns the name of the package in which it occurs.

File::Basename - Parse file paths into directory, filename and suffix.

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME File::Basename - Parse file paths into directory, filename and suffix. SYNOPSIS use File::Basename; ($name,$path,$suffix) = fileparse($fullname,@suffixlist); $name = fileparse($fullname,@suffixlist); $basename = basename($fullname,@suffixlist); $dirname = dirname($fullname); DESCRIPTION These routines allow you to parse file paths into their directory, filename and suffix. NOTE: dirname() and basename() emulate the behaviours, and quirks, of the she

Pod::Escapes - for resolving Pod E<...> sequences

NAME SYNOPSIS DESCRIPTION GOODIES CAVEATS SEE ALSO REPOSITORY COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Escapes - for resolving Pod E<...> sequences SYNOPSIS use Pod::Escapes qw(e2char); ...la la la, parsing POD, la la la... $text = e2char($e_node->label); unless(defined $text) { print "Unknown E sequence \"", $e_node->label, "\"!"; } ...else print/interpolate $text... DESCRIPTION This module provides things that are useful in decoding Pod E<...> sequences. Presumably, i

Config - access Perl configuration information

NAME SYNOPSIS DESCRIPTION EXAMPLE WARNING GLOSSARY_ a b c d e f g h i k l m n o p P q r s t u v x y z GIT DATA NOTE NAME Config - access Perl configuration information SYNOPSIS use Config; if ($Config{usethreads}) { print "has thread support\n" } use Config qw(myconfig config_sh config_vars config_re); print myconfig(); print config_sh(); print config_re(); config_vars(qw(osname archname)); DESCRIPTION The Config module contains all the information that was av