Pod::Text - Convert POD data to formatted ASCII text

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS CAVEATS NOTES SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::Text - Convert POD data to formatted ASCII text SYNOPSIS use Pod::Text; my $parser = Pod::Text->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.txt. $parser->parse_from_file ('file.pod', 'file.txt'); DESCRIPTION Pod::Text is a module that can convert documentation in th

File::Spec::Mac - File::Spec for Mac OS (Classic)

NAME SYNOPSIS DESCRIPTION METHODS AUTHORS COPYRIGHT SEE ALSO NAME File::Spec::Mac - File::Spec for Mac OS (Classic) SYNOPSIS require File::Spec::Mac; # Done internally by File::Spec if needed DESCRIPTION Methods for manipulating file specifications. METHODS canonpath On Mac OS, there's nothing to be done. Returns what it's given. catdir() Concatenate two or more directory names to form a path separated by colons (":") ending with a directory. Resulting paths are relative by default, but c

threads - Perl interpreter-based threads

NAME VERSION WARNING SYNOPSIS DESCRIPTION EXITING A THREAD THREAD STATE THREAD CONTEXTExplicit context Implicit context $thr->wantarray() threads->wantarray() THREAD STACK SIZE THREAD SIGNALLING WARNINGS ERRORS BUGS AND LIMITATIONS REQUIREMENTS SEE ALSO AUTHOR LICENSE ACKNOWLEDGEMENTS NAME threads - Perl interpreter-based threads VERSION This document describes threads version 2.01 WARNING The "interpreter-based threads" provided by Perl are not the fast, lightweight system for multit

$^O

$^O The name of the operating system under which this copy of Perl was built, as determined during the configuration process. For examples see PLATFORMS in perlport. The value is identical to $Config{'osname'} . See also Config and the -V command-line switch documented in perlrun. In Windows platforms, $^O is not very helpful: since it is always MSWin32 , it doesn't tell the difference between 95/98/ME/NT/2000/XP/CE/.NET. Use Win32::GetOSName() or Win32::GetOSVersion() (see Win32 and perlport)

flock

flock FILEHANDLE,OPERATION Calls flock(2), or an emulation of it, on FILEHANDLE. Returns true for success, false on failure. Produces a fatal error if used on a machine that doesn't implement flock(2), fcntl(2) locking, or lockf(3). flock is Perl's portable file-locking interface, although it locks entire files only, not records. Two potentially non-obvious but traditional flock semantics are that it waits indefinitely until the lock is granted, and that its locks are merely advisory. Such disc

perlfaq1 - General Questions About Perl

NAME VERSION DESCRIPTIONWhat is Perl? Who supports Perl? Who develops it? Why is it free? Which version of Perl should I use? What are Perl 4, Perl 5, or Perl 6? What is Perl 6? How stable is Perl? How often are new versions of Perl released? Is Perl difficult to learn? How does Perl compare with other languages like Java, Python, REXX, Scheme, or Tcl? Can I do [task] in Perl? When shouldn't I program in Perl? What's the difference between "perl" and "Perl"? What is a JAPH? How can I convince

perlhpux - Perl version 5 on Hewlett-Packard Unix (HP-UX) systems

NAME DESCRIPTIONUsing perl as shipped with HP-UX Using perl from HP's porting centre Other prebuilt perl binaries Compiling Perl 5 on HP-UX PA-RISC Portability Between PA-RISC Versions PA-RISC 1.0 PA-RISC 1.1 PA-RISC 2.0 Itanium Processor Family (IPF) and HP-UX Itanium, Itanium 2 & Madison 6 HP-UX versions Building Dynamic Extensions on HP-UX The HP ANSI C Compiler The GNU C Compiler Using Large Files with Perl on HP-UX Threaded Perl on HP-UX 64-bit Perl on HP-UX Oracle on HP-UX GDBM and T

Pod::Perldoc - Look up Perl documentation in Pod format.

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc - Look up Perl documentation in Pod format. SYNOPSIS use Pod::Perldoc (); Pod::Perldoc->run(); DESCRIPTION The guts of perldoc utility. SEE ALSO perldoc COPYRIGHT AND DISCLAIMERS Copyright (c) 2002-2007 Sean M. Burke. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any

listen

listen SOCKET,QUEUESIZE Does the same thing that the listen(2) system call does. Returns true if it succeeded, false otherwise. See the example in Sockets: Client/Server Communication in perlipc.

Regexp Quote-Like Operators

Regexp Quote-Like Operators Here are the quote-like operators that apply to pattern matching and related activities. qr/STRING/msixpodualn This operator quotes (and possibly compiles) its STRING as a regular expression. STRING is interpolated the same way as PATTERN in m/PATTERN/. If "'" is used as the delimiter, no interpolation is done. Returns a Perl value which may be used instead of the corresponding /STRING/msixpodualn expression. The returned value is a normalized version of the origi