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

Errno - System errno constants

NAME SYNOPSIS DESCRIPTION CAVEATS AUTHOR COPYRIGHT NAME Errno - System errno constants SYNOPSIS use Errno qw(EINTR EIO :POSIX); DESCRIPTION Errno defines and conditionally exports all the error constants defined in your system errno.h include file. It has a single export tag, :POSIX , which will export all POSIX defined error numbers. Errno also makes %! magic such that each element of %! has a non-zero value only if $! is set to that value. For example: use Errno; unless (open(FH, "/fangor

File::Fetch - A generic file fetching mechanism

NAME SYNOPSIS DESCRIPTION ACCESSORS METHODS$ff = File::Fetch->new( uri => 'http://some.where.com/dir/file.txt' ); $where = $ff->fetch( [to => /my/output/dir/ | \$scalar] ) $ff->error([BOOL]) HOW IT WORKS GLOBAL VARIABLES$File::Fetch::FROM_EMAIL $File::Fetch::USER_AGENT $File::Fetch::FTP_PASSIVE $File::Fetch::TIMEOUT $File::Fetch::WARN $File::Fetch::DEBUG $File::Fetch::BLACKLIST $File::Fetch::METHOD_FAIL MAPPING FREQUENTLY ASKED QUESTIONSSo how do I use a proxy with File::Fet

$&

$& The string matched by the last successful pattern match (not counting any matches hidden within a BLOCK or eval() enclosed by the current BLOCK). See Performance issues above for the serious performance implications of using this variable (even once) in your code. This variable is read-only and dynamically-scoped. Mnemonic: like & in some editors.

perlpodspec - Plain Old Documentation: format specification and notes

NAME DESCRIPTION Pod Definitions Pod Commands Pod Formatting Codes Notes on Implementing Pod Processors About L<...> Codes About =over...=back Regions About Data Paragraphs and "=begin/=end" Regions SEE ALSO AUTHOR NAME perlpodspec - Plain Old Documentation: format specification and notes DESCRIPTION This document is detailed notes on the Pod markup language. Most people will only have to read perlpod to know how to write in Pod, but this document may answer some incidental questions to

PerlIO::via - Helper class for PerlIO layers implemented in perl

NAME SYNOPSIS DESCRIPTION EXPECTED METHODS EXAMPLESExample - a Hexadecimal Handle NAME PerlIO::via - Helper class for PerlIO layers implemented in perl SYNOPSIS use PerlIO::via::Layer; open($fh,"<:via(Layer)",...); use Some::Other::Package; open($fh,">:via(Some::Other::Package)",...); DESCRIPTION The PerlIO::via module allows you to develop PerlIO layers in Perl, without having to go into the nitty gritty of programming C with XS as the interface to Perl. One example module, PerlIO::

getprotobyname

getprotobyname NAME

$LAST_REGEXP_CODE_RESULT

$LAST_REGEXP_CODE_RESULT

Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for tied hashes

NAME SYNOPSIS DESCRIPTION Inheriting from *Tie::StdHash* Inheriting from *Tie::ExtraHash* SCALAR, UNTIE and DESTROY MORE INFORMATION NAME Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for tied hashes SYNOPSIS package NewHash; require Tie::Hash; @ISA = qw(Tie::Hash); sub DELETE { ... } # Provides needed method sub CLEAR { ... } # Overrides inherited method package NewStdHash; require Tie::Hash; @ISA = qw(Tie::StdHash); # All methods provide

$_

$_ The default input and pattern-searching space. The following pairs are equivalent: while (<>) {...} # equivalent only in while! while (defined($_ = <>)) {...} /^Subject:/ $_ =~ /^Subject:/ tr/a-z/A-Z/ $_ =~ tr/a-z/A-Z/ chomp chomp($_) Here are the places where Perl will assume $_ even if you don't use it: The following functions use $_ as a default argument: abs, alarm, chomp, chop, chr, chroot, cos, defined, eval, evalbytes, exp, fc, glob, hex, int, lc, lcfirst, length,