perlunicode - Unicode support in Perl

NAME DESCRIPTIONImportant Caveats Byte and Character Semantics ASCII Rules versus Unicode Rules Extended Grapheme Clusters (Logical characters) Unicode Character Properties User-Defined Character Properties User-Defined Case Mappings (for serious hackers only) Character Encodings for Input and Output Unicode Regular Expression Support Level Unicode Encodings Noncharacter code points Beyond Unicode code points Security Implications of Unicode Unicode in Perl on EBCDIC Locales When Unicode Does

Pod::Simple::XHTML -- format Pod as validating XHTML

NAME SYNOPSIS DESCRIPTIONMinimal code METHODSperldoc_url_prefix perldoc_url_postfix man_url_prefix man_url_postfix title_prefix, title_postfix html_css html_javascript html_doctype html_charset html_header_tags html_h_level default_title force_title html_header, html_footer index anchor_items backlink SUBCLASSINGhandle_text handle_code accept_targets_as_html resolve_pod_page_link resolve_man_page_link idify batch_mode_page_object_init SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS ACKNOWLEDGEM

waitpid

waitpid PID,FLAGS Waits for a particular child process to terminate and returns the pid of the deceased process, or -1 if there is no such child process. On some systems, a value of 0 indicates that there are processes still running. The status is returned in $? and ${^CHILD_ERROR_NATIVE} . If you say use POSIX ":sys_wait_h"; #... do { $kid = waitpid(-1, WNOHANG); } while $kid > 0; then you can do a non-blocking wait for all pending zombie processes. Non-blocking wait is available on ma

IO::Handle->format_formfeed(EXPR)

IO::Handle->format_formfeed(EXPR)

ExtUtils::Mksymlists - write linker options files for dynamic extension

NAME SYNOPSIS DESCRIPTION AUTHOR REVISION NAME ExtUtils::Mksymlists - write linker options files for dynamic extension SYNOPSIS use ExtUtils::Mksymlists; Mksymlists( NAME => $name , DL_VARS => [ $var1, $var2, $var3 ], DL_FUNCS => { $pkg1 => [ $func1, $func2 ], $pkg2 => [ $func3 ] ); DESCRIPTION ExtUtils::Mksymlists produces files used by the linker under some OSs during the creation of shared libraries for dynamic exte

ExtUtils::Install - install files from here to there

NAME SYNOPSIS VERSION DESCRIPTION ENVIRONMENT AUTHOR LICENSE NAME ExtUtils::Install - install files from here to there SYNOPSIS use ExtUtils::Install; install({ 'blib/lib' => 'some/install/dir' } ); uninstall($packlist); pm_to_blib({ 'lib/Foo/Bar.pm' => 'blib/lib/Foo/Bar.pm' }); VERSION 2.04 DESCRIPTION Handles the installing and uninstalling of perl modules, scripts, man pages, etc... Both install() and uninstall() are specific to the way ExtUtils::MakeMaker handles the installatio

perlpodstyle - Perl POD style guide

NAME DESCRIPTION SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME perlpodstyle - Perl POD style guide DESCRIPTION These are general guidelines for how to write POD documentation for Perl scripts and modules, based on general guidelines for writing good UNIX man pages. All of these guidelines are, of course, optional, but following them will make your documentation more consistent with other documentation on the system. The name of the program being documented is conventionally written in bold (usin

$<

$< The real uid of this process. You can change both the real uid and the effective uid at the same time by using POSIX::setuid() . Since changes to $< require a system call, check $! after a change attempt to detect any possible errors. Mnemonic: it's the uid you came from, if you're running setuid.

no

no MODULE VERSION LIST no MODULE VERSION no MODULE LIST no MODULE no VERSION See the use function, of which no is the opposite.

${^POSTMATCH}

${^POSTMATCH} This is similar to $' ($POSTMATCH ) except that it does not incur the performance penalty associated with that variable. See Performance issues above. In Perl v5.18 and earlier, it is only guaranteed to return a defined value when the pattern was compiled or executed with the /p modifier. In Perl v5.20, the /p modifier does nothing, so ${^POSTMATCH} does the same thing as $POSTMATCH . This variable was added in Perl v5.10.0. This variable is read-only and dynamically-scoped.