$SYSTEM_FD_MAX

$SYSTEM_FD_MAX

endgrent

endgrent

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,

$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

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

vmsish - Perl pragma to control VMS-specific language features

NAME SYNOPSIS DESCRIPTION NAME vmsish - Perl pragma to control VMS-specific language features SYNOPSIS use vmsish; use vmsish 'status'; # or '$?' use vmsish 'exit'; use vmsish 'time'; use vmsish 'hushed'; no vmsish 'hushed'; vmsish::hushed($hush); use vmsish; no vmsish 'time'; DESCRIPTION If no import list is supplied, all possible VMS-specific features are assumed. Currently, there are four VMS-specific features available: 'status' (a.k.a '$?'), 'exit', 'time' and 'hushed'. If you're not