Terms and List Operators (Leftward)

Terms and List Operators (Leftward) A TERM has the highest precedence in Perl. They include variables, quote and quote-like operators, any expression in parentheses, and any function whose arguments are parenthesized. Actually, there aren't really functions in this sense, just list operators and unary operators behaving as functions because you put parentheses around the arguments. These are all documented in perlfunc. If any list operator (print(), etc.) or any unary operator (chdir(), etc.)

Pod::Simple::Debug -- put Pod::Simple into trace/debug mode

NAME SYNOPSIS DESCRIPTION CAVEATS GUTS SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Debug -- put Pod::Simple into trace/debug mode SYNOPSIS use Pod::Simple::Debug (5); # or some integer Or: my $debuglevel; use Pod::Simple::Debug (\$debuglevel, 0); ...some stuff that uses Pod::Simple to do stuff, but which you don't want debug output from... $debug_level = 4; ...some stuff that uses Pod::Simple to do stuff, but which you DO want debug output from... $debug_level =

Tie::Memoize - add data to hash when needed

NAME SYNOPSIS DESCRIPTION Inheriting from *Tie::Memoize* EXAMPLE BUGS AUTHOR NAME Tie::Memoize - add data to hash when needed SYNOPSIS require Tie::Memoize; tie %hash, 'Tie::Memoize', \&fetch, # The rest is optional $DATA, \&exists, {%ini_value}, {%ini_existence}; DESCRIPTION This package allows a tied hash to autoload its values on the first access, and to use the cached value on the following accesses. Only read-accesses (via fetching the value or exists) result in ca

perldebtut - Perl debugging tutorial

NAME DESCRIPTION use strict Looking at data and -w and v help Stepping through code Placeholder for a, w, t, T REGULAR EXPRESSIONS OUTPUT TIPS CGI GUIs SUMMARY SEE ALSO AUTHOR CONTRIBUTORS NAME perldebtut - Perl debugging tutorial DESCRIPTION A (very) lightweight introduction in the use of the perl debugger, and a pointer to existing, deeper sources of information on the subject of debugging perl programs. There's an extraordinary number of people out there who don't appear to know anything a

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