File::Spec - portably perform operations on file names

NAME SYNOPSIS DESCRIPTION METHODS SEE ALSO AUTHOR COPYRIGHT NAME File::Spec - portably perform operations on file names SYNOPSIS use File::Spec; $x=File::Spec->catfile('a', 'b', 'c'); which returns 'a/b/c' under Unix. Or: use File::Spec::Functions; $x = catfile('a', 'b', 'c'); DESCRIPTION This module is designed to support operations commonly performed on file specifications (usually called "file names", but not to be confused with the contents of a file, or Perl's file handles), such

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

${^WARNING_BITS}

${^WARNING_BITS} The current set of warning checks enabled by the use warnings pragma. It has the same scoping as the $^H and %^H variables. The exact values are considered internal to the warnings pragma and may change between versions of Perl. This variable was added in Perl v5.6.0.

$&amp;

$& 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.

subs - Perl pragma to predeclare sub names

NAME SYNOPSIS DESCRIPTION NAME subs - Perl pragma to predeclare sub names SYNOPSIS use subs qw(frob); frob 3..10; DESCRIPTION This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. Unlike pragmas that affect the $^H hints variable, the use vars and use subs declarations are not BLOCK-scoped. They are thus effective for the entire package in which they appear. You may not rescind such declarations with no

ExtUtils::MM_Any - Platform-agnostic MM methods

NAME SYNOPSIS DESCRIPTION METHODSCross-platform helper methods Targets Init methods Tools File::Spec wrappers Misc AUTHOR NAME ExtUtils::MM_Any - Platform-agnostic MM methods SYNOPSIS FOR INTERNAL USE ONLY! package ExtUtils::MM_SomeOS; # Temporarily, you have to subclass both. Put MM_Any first. require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @ISA = qw(ExtUtils::MM_Any ExtUtils::Unix); DESCRIPTION FOR INTERNAL USE ONLY! ExtUtils::MM_Any is a superclass for the ExtUtils::MM_* set of

TAP::Parser::Iterator::Process - Iterator for process-based TAP sources

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods ATTRIBUTION SEE ALSO NAME TAP::Parser::Iterator::Process - Iterator for process-based TAP sources VERSION Version 3.35 SYNOPSIS use TAP::Parser::Iterator::Process; my %args = ( command => ['python', 'setup.py', 'test'], merge => 1, setup => sub { ... }, teardown => sub { ... }, ); my $it = TAP::Parser::Iterator::Process->new(\%args); my $line = $it->next; DESCRIPTION This is a simple iter

DESTROY

DESTROY This method keyword is documented in Destructors in perlobj.

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

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