HANDLE->format_lines_per_page(EXPR)

HANDLE->format_lines_per_page(EXPR)

getnetent

getnetent

perlopentut - simple recipes for opening files and pipes in Perl

NAME DESCRIPTION Opening Text FilesOpening Text Files for Reading Opening Text Files for Writing Opening Binary Files Opening Pipes Low-level File Opens via sysopen SEE ALSO AUTHOR and COPYRIGHT NAME perlopentut - simple recipes for opening files and pipes in Perl DESCRIPTION Whenever you do I/O on a file in Perl, you do so through what in Perl is called a filehandle. A filehandle is an internal name for an external file. It is the job of the open function to make the association between th

perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.

NAME SYNOPSIS DESCRIPTIONTarget Other OSes Prerequisites Starting Perl programs under OS/2 (and DOS and...) Starting OS/2 (and DOS) programs under Perl Frequently asked questions"It does not work" I cannot run external programs I cannot embed perl into my program, or use _perl.dll_ from my program. `` and pipe-open do not work under DOS. Cannot start find.exe "pattern" file INSTALLATIONAutomatic binary installation Manual binary installation *Warning* Accessing documentationOS/2 _.INF_ f

until

until These flow-control keywords are documented in Compound Statements in perlsyn.

$COMPILING

$COMPILING

die

die LIST die raises an exception. Inside an eval the error message is stuffed into $@ and the eval is terminated with the undefined value. If the exception is outside of all enclosing evals, then the uncaught exception prints LIST to STDERR and exits with a non-zero value. If you need to exit the process with a specific exit code, see exit. Equivalent examples: die "Can't cd to spool: $!\n" unless chdir '/usr/spool/news'; chdir '/usr/spool/news' or die "Can't cd to spool: $!\n" If the last ele

Exporter - Implements default import method for modules

NAME SYNOPSIS DESCRIPTIONHow to Export Selecting What to Export How to Import Advanced FeaturesSpecialised Import Lists Exporting Without Using Exporter's import Method Exporting Without Inheriting from Exporter Module Version Checking Managing Unknown Symbols Tag Handling Utility Functions Generating Combined Tags AUTOLOADed Constants Good PracticesDeclaring @EXPORT_OK and Friends Playing Safe What Not to Export SEE ALSO LICENSE NAME Exporter - Implements default import method for modu

CPAN::HandleConfig - internal configuration handling for CPAN.pm

NAMECLASS->safe_quote ITEM LICENSE NAME CPAN::HandleConfig - internal configuration handling for CPAN.pm CLASS->safe_quote ITEM Quotes an item to become safe against spaces in shell interpolation. An item is enclosed in double quotes if: - the item contains spaces in the middle - the item does not start with a quote This happens to avoid shell interpolation problems when whitespace is present in directory names. This method uses commands_quote to determine the correct quote. If comm

Pod::Man - Convert POD data to formatted *roff input

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS CAVEATS AUTHOR COPYRIGHT AND LICENSE SEE ALSO NAME Pod::Man - Convert POD data to formatted *roff input SYNOPSIS use Pod::Man; my $parser = Pod::Man->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_file (\*STDIN); # Read POD from file.pod and write to file.1. $parser->parse_from_file ('file.pod', 'file.1'); DESCRIPTION Pod::Man is a module to convert documentation in the POD format