$^P

$^P The internal variable for debugging support. The meanings of the various bits are subject to change, but currently indicate: 0 x01 Debug subroutine enter/exit. 0 x02 Line-by-line debugging. Causes DB::DB() subroutine to be called for each statement executed. Also causes saving source code lines (like 0x400). 0 x04 Switch off optimizations. 0 x08 Preserve more data for future interactive inspections. 0 x10 Keep info about source lines on which a subroutine is defined. 0 x20 Start

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

ExtUtils::Manifest - utilities to write and check a MANIFEST file

NAME VERSION SYNOPSIS DESCRIPTIONFunctions MANIFEST MANIFEST.SKIP EXPORT_OK GLOBAL VARIABLES DIAGNOSTICS ENVIRONMENT SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME ExtUtils::Manifest - utilities to write and check a MANIFEST file VERSION version 1.70 SYNOPSIS use ExtUtils::Manifest qw(...funcs to import...); mkmanifest(); my @missing_files = manicheck; my @skipped = skipcheck; my @extra_files = filecheck; my($missing, $extra) = fullcheck; my $found = manifind(); my $mani

format

format Declare a picture format for use by the write function. For example: format Something = Test: @<<<<<<<< @||||| @>>>>> $str, $%, '$' . int($num) . $str = "widget"; $num = $cost/$quantity; $~ = 'Something'; write; See perlform for many details and examples.

dbmopen

dbmopen HASH,DBNAME,MASK [This function has been largely superseded by the tie function.] This binds a dbm(3), ndbm(3), sdbm(3), gdbm(3), or Berkeley DB file to a hash. HASH is the name of the hash. (Unlike normal open, the first argument is not a filehandle, even though it looks like one). DBNAME is the name of the database (without the .dir or .pag extension if any). If the database does not exist, it is created with protection specified by MASK (as modified by the umask). To prevent creation

perltooc - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perltooc - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the tutorial that was formerly here in perltooc.)

chmod

chmod LIST Changes the permissions of a list of files. The first element of the list must be the numeric mode, which should probably be an octal number, and which definitely should not be a string of octal digits: 0644 is okay, but "0644" is not. Returns the number of files successfully changed. See also oct if all you have is a string. $cnt = chmod 0755, "foo", "bar"; chmod 0755, @executables; $mode = "0644"; chmod $mode, "foo"; # !!! sets mode to

shmctl

shmctl ID,CMD,ARG Calls the System V IPC function shmctl. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is IPC_STAT , then ARG must be a variable that will hold the returned shmid_ds structure. Returns like ioctl: undef for error; "0 but true" for zero; and the actual return value otherwise. See also SysV IPC in perlipc and IPC::SysV documentation. Portability issues: shmctl in perlport.

Devel::PPPort - Perl/Pollution/Portability

NAME SYNOPSIS DESCRIPTIONWhy use ppport.h? How to use ppport.h Running ppport.h FUNCTIONSWriteFile GetFileContents COMPATIBILITYProvided Perl compatibility API Perl API not supported by ppport.h BUGS AUTHORS COPYRIGHT SEE ALSO NAME Devel::PPPort - Perl/Pollution/Portability SYNOPSIS Devel::PPPort::WriteFile(); # defaults to ./ppport.h Devel::PPPort::WriteFile('someheader.h'); # Same as above but retrieve contents rather than write file my $contents = Devel::PPPort::GetFileContents();

TAP::Parser::Result::Plan - Plan result token.

NAME VERSION DESCRIPTION OVERRIDDEN METHODSInstance Methods NAME TAP::Parser::Result::Plan - Plan result token. VERSION Version 3.35 DESCRIPTION This is a subclass of TAP::Parser::Result. A token of this class will be returned if a plan line is encountered. 1..1 ok 1 - woo hooo! 1..1 is the plan. Gotta have a plan. 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 Instance Methods plan if ( $r