perlnetware - Perl for NetWare

NAME DESCRIPTION BUILDTools & SDK Setup Make Interpreter Extensions INSTALL BUILD NEW EXTENSIONS ACKNOWLEDGEMENTS AUTHORS DATE NAME perlnetware - Perl for NetWare DESCRIPTION This file gives instructions for building Perl 5.7 and above, and also Perl modules for NetWare. Before you start, you may want to read the README file found in the top level directory into which the Perl source code distribution was extracted. Make sure you read and understand the terms under which the software is

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

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

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

HANDLE->autoflush( EXPR )

HANDLE->autoflush( EXPR )

$~

$~ The name of the current report format for the currently selected output channel. The default format name is the same as the filehandle name. For example, the default format name for the STDOUT filehandle is just STDOUT . Mnemonic: brother to $^ .

$EXECUTABLE_NAME

$EXECUTABLE_NAME

perluniintro - Perl Unicode introduction

NAME DESCRIPTIONUnicode Perl's Unicode Support Perl's Unicode Model Unicode and EBCDIC Creating Unicode Handling Unicode Legacy Encodings Unicode I/O Displaying Unicode As Text Special Cases Advanced Topics Miscellaneous Questions With Answers Hexadecimal Notation Further Resources UNICODE IN OLDER PERLS SEE ALSO ACKNOWLEDGMENTS AUTHOR, COPYRIGHT, AND LICENSE NAME perluniintro - Perl Unicode introduction DESCRIPTION This document gives a general idea of Unicode and how to use Unicode in Per

ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.

NAME SYNOPSIS DESCRIPTIONFUNCTIONS SEE ALSO AUTHOR NAME ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc. SYNOPSIS perl -MExtUtils::Command -e cat files... > destination perl -MExtUtils::Command -e mv source... destination perl -MExtUtils::Command -e cp source... destination perl -MExtUtils::Command -e touch files... perl -MExtUtils::Command -e rm_f files... perl -MExtUtils::Command -e rm_rf directories... perl -MExtUtils::Command -e mkpath directories... per

TAP::Harness - Run test scripts with statistics

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods Instance Methods CONFIGURINGPlugins Module::Build ExtUtils::MakeMaker prove WRITING PLUGINS SUBCLASSINGMethods REPLACING SEE ALSO NAME TAP::Harness - Run test scripts with statistics VERSION Version 3.35 DESCRIPTION This is a simple test harness which allows tests to be run and results automatically aggregated and output to STDOUT. SYNOPSIS use TAP::Harness; my $harness = TAP::Harness->new( \%args ); $harness->runtests(@tests);