$^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.

IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop file/buffer

NAME SYNOPSIS DESCRIPTION Functional Interfaceanyuncompress $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsread read getline getc ungetc getHeaderInfo tell eof seek binmode opened autoflush input_line_number fileno close nextStream trailingData Importing EXAMPLES SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Uncompress::AnyUncompress - Uncompres

getnetbyname

getnetbyname NAME

IPC::Cmd - finding and running system commands made easy

NAME SYNOPSIS DESCRIPTION CLASS METHODS$ipc_run_version = IPC::Cmd->can_use_ipc_run( [VERBOSE] ) $ipc_open3_version = IPC::Cmd->can_use_ipc_open3( [VERBOSE] ) $bool = IPC::Cmd->can_capture_buffer $bool = IPC::Cmd->can_use_run_forked FUNCTIONS$path = can_run( PROGRAM ); $ok | ($ok, $err, $full_buf, $stdout_buff, $stderr_buff) = run( command => COMMAND, [verbose => BOOL, buffer => \$SCALAR, timeout => DIGIT] ); $hashref = run_forked( COMMAND, { child_stdin => SCALAR,

perldoc

SYNOPSIS DESCRIPTION OPTIONS SECURITY ENVIRONMENT CHANGES SEE ALSO AUTHOR SYNOPSIS perldoc [-h] [-D] [-t] [-u] [-m] [-l] [-F] [-i] [-V] [-T] [-r] [-d destination_file] [-o formatname] [-M FormatterClassName] [-w formatteroption:value] [-n nroff-replacement] [-X] [-L language_code] PageName|ModuleName|ProgramName|URL Examples: perldoc -f BuiltinFunction perldoc -L it -f BuiltinFunction perldoc -q FAQ Keyword perldoc -L fr -q FAQ Keyword perldoc -v P

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

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

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

$^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.

TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects

NAME SYNOPSIS VERSIONDESCRIPTION METHODS Class Methods SUBCLASSINGExample SEE ALSO NAME TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects SYNOPSIS use TAP::Parser::ResultFactory; my $token = {...}; my $factory = TAP::Parser::ResultFactory->new; my $result = $factory->make_result( $token ); VERSION Version 3.35 DESCRIPTION This is a simple factory class which returns a TAP::Parser::Result subclass representing the current bit of test data from TAP (usual