$SYSTEM_FD_MAX

$SYSTEM_FD_MAX

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,

endgrent

endgrent

$LAST_REGEXP_CODE_RESULT

$LAST_REGEXP_CODE_RESULT

Pod::Simple::RTF -- format Pod as RTF

NAME SYNOPSIS DESCRIPTION FORMAT CONTROL ATTRIBUTES SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::RTF -- format Pod as RTF SYNOPSIS perl -MPod::Simple::RTF -e \ "exit Pod::Simple::RTF->filter(shift)->any_errata_seen" \ thingy.pod > thingy.rtf DESCRIPTION This class is a formatter that takes Pod and renders it as RTF, good for viewing/printing in MSWord, WordPad/write.exe, TextEdit, etc. This is a subclass of Pod::Simple and inherits all its methods. FORMAT CO

getprotobyname

getprotobyname NAME

$^X

$^X The name used to execute the current copy of Perl, from C's argv[0] or (where supported) /proc/self/exe. Depending on the host operating system, the value of $^X may be a relative or absolute pathname of the perl program file, or may be the string used to invoke perl but not the pathname of the perl program file. Also, most operating systems permit invoking programs that are not in the PATH environment variable, so there is no guarantee that the value of $^X is in PATH. For VMS, the value

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::

perltie - how to hide an object class in a simple variable

NAME SYNOPSIS DESCRIPTIONTying Scalars Tying Arrays Tying Hashes Tying FileHandles UNTIE this The untie Gotcha SEE ALSO BUGS AUTHOR NAME perltie - how to hide an object class in a simple variable SYNOPSIS tie VARIABLE, CLASSNAME, LIST $object = tied VARIABLE untie VARIABLE DESCRIPTION Prior to release 5.0 of Perl, a programmer could use dbmopen() to connect an on-disk database in the standard Unix dbm(3x) format magically to a %HASH in their program. However, their Perl was eithe