File::Temp - return name and handle of a temporary file safely

NAME VERSION SYNOPSIS DESCRIPTION OBJECT-ORIENTED INTERFACE FUNCTIONS MKTEMP FUNCTIONS POSIX FUNCTIONS ADDITIONAL FUNCTIONS UTILITY FUNCTIONS PACKAGE VARIABLES WARNINGTemporary files and NFS Forking Directory removal Taint mode BINMODE HISTORY SEE ALSO SUPPORTBugs / Feature Requests Source Code AUTHOR CONTRIBUTORS COPYRIGHT AND LICENSE NAME File::Temp - return name and handle of a temporary file safely VERSION version 0.2304 SYNOPSIS use File::Temp qw/ tempfile tempdir /; $fh = tempfile(

Carp - alternative warn and die for modules

NAME SYNOPSIS DESCRIPTIONForcing a Stack Trace Stack Trace formatting GLOBAL VARIABLES$Carp::MaxEvalLen $Carp::MaxArgLen $Carp::MaxArgNums $Carp::Verbose $Carp::RefArgFormatter @CARP_NOT %Carp::Internal %Carp::CarpInternal $Carp::CarpLevel BUGS SEE ALSO AUTHOR COPYRIGHT LICENSE NAME Carp - alternative warn and die for modules SYNOPSIS use Carp; # warn user (from perspective of caller) carp "string trimmed to 80 chars"; # die of errors (from perspective of caller) croak "We're outta here

IO::Compress::Zip - Write zip files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacezip $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Com

perlreref - Perl Regular Expressions Reference

NAME DESCRIPTIONOPERATORS SYNTAX ESCAPE SEQUENCES CHARACTER CLASSES ANCHORS QUANTIFIERS EXTENDED CONSTRUCTS VARIABLES FUNCTIONS TERMINOLOGY AUTHOR SEE ALSO THANKS NAME perlreref - Perl Regular Expressions Reference DESCRIPTION This is a quick reference to Perl's regular expressions. For full information see perlre and perlop, as well as the SEE ALSO section in this document. OPERATORS =~ determines to which variable the regex is applied. In its absence, $_ is used. $var =~ /foo/; !~ determ

IO::Handle->output_record_separator( EXPR )

IO::Handle->output_record_separator( EXPR )

$FORMAT_TOP_NAME

$FORMAT_TOP_NAME

NDBM_File - Tied access to ndbm files

NAME SYNOPSIS DESCRIPTION DIAGNOSTICSndbm store returned -1, errno 22, key "..." at ... BUGS AND WARNINGS NAME NDBM_File - Tied access to ndbm files SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use NDBM_File; tie(%h, 'NDBM_File', 'filename', O_RDWR|O_CREAT, 0666) or die "Couldn't tie NDBM file 'filename': $!; aborting"; # Now read and change the hash $h{newkey} = newvalue; print $h{oldkey}; ... untie %h; DESCRIPTION NDBM_File establishes a connection between a Perl hash variable a

%OS_ERROR

%OS_ERROR

@-

@- $-[0] is the offset of the start of the last successful match. $-[n] is the offset of the start of the substring matched by n-th subpattern, or undef if the subpattern did not match. Thus, after a match against $_ , $& coincides with substr $_, $-[0], $+[0] - $-[0] . Similarly, $n coincides with substr $_, $-[n], $+[n] - $-[n] if $-[n] is defined, and $+ coincides with substr $_, $-[$#-], $+[$#-] - $-[$#-] . One can use $#- to find the last matched subgroup in the last successful match.

ARGV

ARGV The special filehandle that iterates over command-line filenames in @ARGV . Usually written as the null filehandle in the angle operator <> . Note that currently ARGV only has its magical effect within the <> operator; elsewhere it is just a plain filehandle corresponding to the last file opened by <> . In particular, passing \*ARGV as a parameter to a function that expects a filehandle may not cause your function to automatically read the contents of all the files in @A