blib - Use MakeMaker's uninstalled version of a package

NAME SYNOPSIS DESCRIPTION BUGS AUTHOR NAME blib - Use MakeMaker's uninstalled version of a package SYNOPSIS perl -Mblib script [args...] perl -Mblib=dir script [args...] DESCRIPTION Looks for MakeMaker-like 'blib' directory structure starting in dir (or current directory) and working back up to five levels of '..'. Intended for use on command line with -M option as a way of testing arbitrary scripts against an uninstalled version of a package. However it is possible to : use blib; or use bl

quotemeta

quotemeta EXPR quotemeta Returns the value of EXPR with all the ASCII non-"word" characters backslashed. (That is, all ASCII characters not matching /[A-Za-z_0-9]/ will be preceded by a backslash in the returned string, regardless of any locale settings.) This is the internal function implementing the \Q escape in double-quoted strings. (See below for the behavior on non-ASCII code points.) If EXPR is omitted, uses $_ . quotemeta (and \Q ... \E ) are useful when interpolating strings into regul

FileHandle - supply object methods for filehandles

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME FileHandle - supply object methods for filehandles SYNOPSIS use FileHandle; $fh = FileHandle->new; if ($fh->open("< file")) { print <$fh>; $fh->close; } $fh = FileHandle->new("> FOO"); if (defined $fh) { print $fh "bar\n"; $fh->close; } $fh = FileHandle->new("file", "r"); if (defined $fh) { print <$fh>; undef $fh; # automatically closes the file } $fh = FileHandle->new("file", O_WR

charnames - access to Unicode character names and named character sequences; also define character names

NAME SYNOPSIS DESCRIPTION LOOSE MATCHES ALIASES CUSTOM ALIASES charnames::string_vianame(_name_) charnames::vianame(_name_) charnames::viacode(_code_) CUSTOM TRANSLATORS BUGS NAME charnames - access to Unicode character names and named character sequences; also define character names SYNOPSIS use charnames ':full'; print "\N{GREEK SMALL LETTER SIGMA} is called sigma.\n"; print "\N{LATIN CAPITAL LETTER E WITH VERTICAL LINE BELOW}", " is an officially named sequence of two Unicode charact

untie

untie VARIABLE Breaks the binding between a variable and a package. (See tie.) Has no effect if the variable is not tied.

$^L

$^L What formats output as a form feed. The default is \f . You cannot call format_formfeed() on a handle, only as a static method. See IO::Handle.

require

require VERSION require EXPR require Demands a version of Perl specified by VERSION, or demands some semantics specified by EXPR or by $_ if EXPR is not supplied. VERSION may be either a numeric argument such as 5.006, which will be compared to $] , or a literal of the form v5.6.1, which will be compared to $^V (aka $PERL_VERSION). An exception is raised if VERSION is greater than the version of the current Perl interpreter. Compare with use, which can do a similar check at compile time. Specif

Term::ReadLine - Perl interface to various readline packages. If no real package is found, substitutes stubs instead of basic functions.

NAME SYNOPSIS DESCRIPTION Minimal set of supported functions Additional supported functions EXPORTS ENVIRONMENT NAME Term::ReadLine - Perl interface to various readline packages. If no real package is found, substitutes stubs instead of basic functions. SYNOPSIS use Term::ReadLine; my $term = Term::ReadLine->new('Simple Perl calc'); my $prompt = "Enter your arithmetic expression: "; my $OUT = $term->OUT || \*STDOUT; while ( defined ($_ = $term->readline($prompt)) ) { my $res = eval

TAP::Parser::Result - Base class for TAP::Parser output objects

NAME VERSION SYNOPSISDESCRIPTION METHODS Boolean methods SUBCLASSINGExample SEE ALSO NAME TAP::Parser::Result - Base class for TAP::Parser output objects VERSION Version 3.35 SYNOPSIS # abstract class - not meant to be used directly # see TAP::Parser::ResultFactory for preferred usage # directly: use TAP::Parser::Result; my $token = {...}; my $result = TAP::Parser::Result->new( $token ); DESCRIPTION This is a simple base class used by TAP::Parser to store objects that represent the c

perllocale - Perl locale handling (internationalization and localization)

NAME DESCRIPTION WHAT IS A LOCALE PREPARING TO USE LOCALES USING LOCALESThe "use locale" pragma The setlocale function Finding locales LOCALE PROBLEMS Testing for broken locales Temporarily fixing locale problems Permanently fixing locale problems Permanently fixing your system's locale configuration Fixing system locale configuration The localeconv function I18N::Langinfo LOCALE CATEGORIESCategory LC_COLLATE: Collation Category LC_CTYPE: Character Types Category LC_NUMERIC: Numeric Formatti