shmwrite

shmwrite ID,STRING,POS,SIZE Reads or writes the System V shared memory segment ID starting at position POS for size SIZE by attaching to it, copying in/out, and detaching from it. When reading, VAR must be a variable that will hold the data read. When writing, if STRING is too long, only SIZE bytes are used; if STRING is too short, nulls are written to fill out SIZE bytes. Return true if successful, false on error. shmread() taints the variable. See also SysV IPC in perlipc, IPC::SysV , and the

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

IO::Handle->format_formfeed(EXPR)

IO::Handle->format_formfeed(EXPR)

TAP::Parser::Result::Pragma - TAP pragma token.

NAME VERSION DESCRIPTION OVERRIDDEN METHODSInstance Methods NAME TAP::Parser::Result::Pragma - TAP pragma token. VERSION Version 3.35 DESCRIPTION This is a subclass of TAP::Parser::Result. A token of this class will be returned if a pragma is encountered. TAP version 13 pragma +strict, -foo Pragmas are only supported from TAP version 13 onwards. OVERRIDDEN METHODS Mainly listed here to shut up the pitiful screams of the pod coverage tests. They keep me awake at night. as_string raw

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

ptar

NAME DESCRIPTION SYNOPSIS OPTIONS SEE ALSO NAME ptar - a tar-like program written in perl DESCRIPTION ptar is a small, tar look-alike program that uses the perl module Archive::Tar to extract, create and list tar archives. SYNOPSIS ptar -c [-v] [-z] [-C] [-f ARCHIVE_FILE | -] FILE FILE ... ptar -c [-v] [-z] [-C] [-T index | -] [-f ARCHIVE_FILE | -] ptar -x [-v] [-z] [-f ARCHIVE_FILE | -] ptar -t [-z] [-f ARCHIVE_FILE | -] ptar -h OPTIONS c Create ARCHIVE_FILE or STDOUT (-) from FILE x

$<

$< 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.

endpwent

endpwent

perlreapi - Perl regular expression plugin interface

NAME DESCRIPTION Callbackscomp exec intuit checkstr free Numbered capture callbacks Named capture callbacks qr_package dupe op_comp The REGEXP structureengine mother_re extflags minlen minlenret gofs substrs nparens, lastparen, and lastcloseparen intflags pprivate swap offs precomp prelen paren_names substrs subbeg sublen saved_copy suboffset subcoffset wrapped wraplen seen_evals refcnt HISTORY AUTHORS LICENSE NAME perlreapi - Perl regular expression plugin interface DESCRIPTION As of Per

shmget

shmget KEY,SIZE,FLAGS Calls the System V IPC function shmget. Returns the shared memory segment id, or undef on error. See also SysV IPC in perlipc and IPC::SysV documentation. Portability issues: shmget in perlport.