Pod::Simple::HTMLBatch - convert several Pod files to several HTML files

NAME SYNOPSIS DESCRIPTIONFROM THE COMMAND LINE MAIN METHODSACCESSOR METHODS NOTES ON CUSTOMIZATION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::HTMLBatch - convert several Pod files to several HTML files SYNOPSIS perl -MPod::Simple::HTMLBatch -e 'Pod::Simple::HTMLBatch::go' in out DESCRIPTION This module is used for running batch-conversions of a lot of HTML documents This class is NOT a subclass of Pod::Simple::HTML (nor of bad old Pod::Html) -- although it uses Pod

perlbook - Books about and related to Perl

NAME DESCRIPTIONThe most popular books References Tutorials Task-Oriented Special Topics Free (as in beer) books Other interesting, non-Perl books A note on freshness Get your book listed NAME perlbook - Books about and related to Perl DESCRIPTION There are many books on Perl and Perl-related. A few of these are good, some are OK, but many aren't worth your money. There is a list of these books, some with extensive reviews, at http://books.perl.org/ . We list some of the books here, and whi

localtime

localtime EXPR localtime Converts a time as returned by the time function to a 9-element list with the time analyzed for the local time zone. Typically used as follows: # 0 1 2 3 4 5 6 7 8 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); All list elements are numeric and come straight out of the C `struct tm'. $sec , $min , and $hour are the seconds, minutes, and hours of the specified time. $mday

Term::Cap - Perl termcap interface

NAME SYNOPSIS DESCRIPTIONMETHODS EXAMPLES COPYRIGHT AND LICENSE AUTHOR SEE ALSO NAME Term::Cap - Perl termcap interface SYNOPSIS require Term::Cap; $terminal = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed }; $terminal->Trequire(qw/ce ku kd/); $terminal->Tgoto('cm', $col, $row, $FH); $terminal->Tputs('dl', $count, $FH); $terminal->Tpad($string, $count, $FH); DESCRIPTION These are low-level functions to extract and use capabilities from a terminal capability (termcap

$^

$^ The name of the current top-of-page format for the currently selected output channel. The default is the name of the filehandle with _TOP appended. For example, the default format top name for the STDOUT filehandle is STDOUT_TOP . Mnemonic: points to top of page.

UNIVERSAL - base class for ALL classes (blessed references)

NAME SYNOPSIS DESCRIPTION WARNINGS EXPORTS NAME UNIVERSAL - base class for ALL classes (blessed references) SYNOPSIS $is_io = $fd->isa("IO::Handle"); $is_io = Class->isa("IO::Handle"); $does_log = $obj->DOES("Logger"); $does_log = Class->DOES("Logger"); $sub = $obj->can("print"); $sub = Class->can("print"); $sub = eval { $ref->can("fandango") }; $ver = $obj->VERSION; # but never do this! $is_io = UNIVERSAL::isa($fd, "IO::Handle"); $sub

Compress::Raw::Bzip2 - Low-Level Interface to bzip2 compression library

NAME SYNOPSIS DESCRIPTION Compression($z, $status) = new Compress::Raw::Bzip2 $appendOutput, $blockSize100k, $workfactor; $status = $bz->bzdeflate($input, $output); $status = $bz->bzflush($output); $status = $bz->bzclose($output); Example Uncompression($z, $status) = new Compress::Raw::Bunzip2 $appendOutput, $consumeInput, $small, $verbosity, $limitOutput; $status = $z->bzinflate($input, $output); Miscmy $version = Compress::Raw::Bzip2::bzlibversion(); Constants SEE ALSO AUTHOR

perlfaq4 - Data Manipulation

NAME VERSION DESCRIPTION Data: NumbersWhy am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)? Why is int() broken? Why isn't my octal data interpreted correctly? Does Perl have a round() function? What about ceil() and floor()? Trig functions? How do I convert between numeric representations/bases/radixes? Why doesn't & work the way I want it to? How do I multiply matrices? How do I perform an operation on a series of integers? How can