SDBM_File - Tied access to sdbm files

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

$SUBSEP

$SUBSEP

perldata - Perl data types

NAME DESCRIPTIONVariable names Identifier parsing Context Scalar values Scalar value constructors List value constructors Subscripts Multi-dimensional array emulation Slices Typeglobs and Filehandles SEE ALSO NAME perldata - Perl data types DESCRIPTION Variable names Perl has three built-in data types: scalars, arrays of scalars, and associative arrays of scalars, known as "hashes". A scalar is a single string (of any size, limited only by the available memory), number, or a refere

Storable - persistence for Perl data structures

NAME SYNOPSIS DESCRIPTION MEMORY STORE ADVISORY LOCKING SPEED CANONICAL REPRESENTATION CODE REFERENCES FORWARD COMPATIBILITY ERROR REPORTING WIZARDS ONLYHooks Predicates Recursion Deep Cloning Storable magic EXAMPLES SECURITY WARNING WARNING BUGS64 bit data in perl 5.6.0 and 5.6.1 CREDITS AUTHOR SEE ALSO NAME Storable - persistence for Perl data structures SYNOPSIS use Storable; store \%table, 'file'; $hashref = retrieve('file'); use Storable qw(nstore store_fd nstore_fd freeze thaw dclon

TAP::Parser - Parse TAP output

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods INDIVIDUAL RESULTSResult types Common type methods plan methods pragma methods comment methods bailout methods unknown methods test methods TOTAL RESULTSIndividual Results Pragmas Summary Results ignore_exit CALLBACKS TAP GRAMMAR BACKWARDS COMPATIBILITYDifferences SUBCLASSINGParser Components ACKNOWLEDGMENTS AUTHORS BUGS COPYRIGHT & LICENSE NAME TAP::Parser - Parse TAP output VERSION Version 3.35 SYNOPSIS use

FileCache - keep more files open than the system permits

NAME SYNOPSIS DESCRIPTION CAVEATS BUGS NAME FileCache - keep more files open than the system permits SYNOPSIS no strict 'refs'; use FileCache; # or use FileCache maxopen => 16; cacheout $mode, $path; # or cacheout $path; print $path @data; $fh = cacheout $mode, $path; # or $fh = cacheout $path; print $fh @data; DESCRIPTION The cacheout function will make sure that there's a filehandle open for reading or writing available as the pathname you give it. It automatically closes and re-open

perlaix - Perl version 5 on IBM AIX (UNIX) systems

NAME DESCRIPTIONCompiling Perl 5 on AIX Supported Compilers Incompatibility with AIX Toolbox lib gdbm Perl 5 was successfully compiled and tested on: Building Dynamic Extensions on AIX Using Large Files with Perl Threaded Perl 64-bit Perl Long doubles Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (threaded/32-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (32-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (threaded/64-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (64-bit)

Pod::Simple::LinkSection -- represent "section" attributes of L codes

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::LinkSection -- represent "section" attributes of L codes SYNOPSIS # a long story DESCRIPTION This class is not of interest to general users. Pod::Simple uses this class for representing the value of the "section" attribute of "L" start-element events. Most applications can just use the normal stringification of objects of this class; they stringify to just the text content of the section, such as "f

Net::FTP - FTP Client class

NAME SYNOPSIS DESCRIPTION OVERVIEW CONSTRUCTOR METHODSMethods for the adventurous THE dataconn CLASS UNIMPLEMENTED REPORTING BUGS AUTHOR SEE ALSO USE EXAMPLES CREDITS COPYRIGHT NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot login ", $ftp->message; $ftp->cwd("/pub") or die "Cannot change working directory ", $f

perlport - Writing portable Perl

NAME DESCRIPTION ISSUESNewlines Numbers endianness and Width Files and Filesystems System Interaction Command names versus file pathnames Networking Interprocess Communication (IPC) External Subroutines (XS) Standard Modules Time and Date Character sets and character encoding Internationalisation System Resources Security Style CPAN Testers PLATFORMSUnix DOS and Derivatives VMS VOS EBCDIC Platforms Acorn RISC OS Other perls FUNCTION IMPLEMENTATIONSAlphabetical Listing of Perl Functions Sup