Rex Swain's HTMLified

Perl 5 Reference Guide

adapted by Dennis German
Command-Line Options
Literals
Variables
Operators
Statements
Subroutines,
    Packages and Modules

Object-Oriented Programming
Arithmetic Functions
Conversion Functions
Structure Conversion
String Functions
Array and List Functions

The Perl Debugger

Regular Expressions
Search and Replace
File Test Operators
File Operations
Input / Output
Formats
Directory Reading
System Interaction
Networking
System V IPC
Miscellaneous
Infor from System Files
Special Variables
Special Arrays
Environment Variables

Index


abs
accept
alarm
and
ARGV
ArithmeticFunctions
ArrayListFunctions
ArraysSpecial
atan2



BEGIN
bind
binmode
bless



caller
chdir
chmod
chomp
chop
chr
chroot
close
closedir
cmp
CommandLineOptions
connect
Contents
continue
Conventions
ConversionFunctions
ConversionStructure
cos
crypt


dbmclose
dbmopen
Debugger
defined
delete
die
Directory


do
dump

each
else
elsif
END
ENV
EnvironmentVariables
eof
eq
eval
eval
exec
exists
exit
exp
EXPORT
EXPORT_OK
ExpressionsRegular




fcntl
fileno
FileOperations
FilesSystemInformationFrom
FileTestOperators
flock
for
foreach
fork
Formats
formline
FunctionsArithmetic
FunctionsArrayList
FunctionsConversion
SearchReplace
FunctionsString



ge
getc
getlogin
getpeername
getpgrp
getppid
getpriority
getsockname
getsockopt
glob
gmtime
goto
goto
grep
gt


hex
HOME


if
import
INC
index
InformationFromSystemFiles
InputOutput
int
InteractionSystem
ioctl
ISA


join


keys
kill



last
lc
lcfirst
le
length
link
ListArrayFunctions
listen
Literals
local
localtime
log
LOGDIR
lstat
lt



m
map
Miscellaeous
mkdir
Modules
my



ne
Networking
next
no
npt




ObjectOrientedProgramming
oct
open
opendir
OperationsFile
Operators
OperatorsFileTest
OptionsCommandLine
or
ord
OutputInput
OVERLOAD



pack
package
Packages
PATH
PERL5DB
PERL5LIB
PERLLIB
pipe
pop
pos
print
printf
push
quotemeta



rand
read
readdir
readlink
recv
redo
ref
RegularExpressions
rename
ReplaceSearch
require
reset
return
reverse
rewindir
rindex
rmdir


s
scalar
scalar
SearchReplace
seek
seekdir
select
send
setpgrp
setpriority
setsockopt
shift
shutdown
SIG
sin
sleep
socket
socketpair
sort
SpecialArrays
SpecialVariables
splice
split
sprintf
sqrt
srand
stat
Statements
StringFunctions
StructureConversion
study
sub
Subroutines
substr
symlink
syscall
sysread
system
File Info
SystemInteraction
SystemVIPC
syswrite


tell
telldir
TestFileOperators
tie
time
times
tr
truncate



uc
ucfirst
umask
undef
unless
unlink
unpack
unshift
untie
until
until
use
utime

values


Variables
VariablesEnvironment
VariablesSpecial
vec

wait
waitpid
wantarray
warn
while
write


xor
y


Document Conventions

fixed   denotes literal text.   word is a keyword, i.e., a word with a special meaning.
THIS means variable text, i.e., things you must fill in.   RETURN key   denotes pressing a keyboard key.
THIS£ means that THIS will default to $_ if omitted.   […] denotes an optional part.

Contents

Command-Line Options

-a autosplit mode when used with -n or -p. Splits to @F.
-F REGEXP specifies a regular expression to split on
-p assumes an input loop around your script. Lines are printed.
-n assumes an input loop around your script. Lines are not printed.
-c checks syntax but does not execute.
-d runs the script under the debugger. Use -de 0 to start the debugger without a script
-D NUMBER sets Debugging flags.
-e COMMANDLINE    enter a single line of script. Multiple -e commands may be given to build up a multiline script. if -a is in effect.
-iEXT files processed by the < > construct are to be edited in place.
-s interprets -xxx on the command line as a switch and sets the corresponding variable $xxx in the script.
-S Search for the script using the PATH environment variable
-T Taint checking.
-u dumps core after compiling the script. To be used with the undump(1) program .
-U allows perl to perform Unsafe operations.
-v prints the version and patchlevel of your Perl executable.
-w prints warnings about possible spelling errors and other error-prone constructs in the script.
-x [DIR] extracts Perl program from input stream. If DIR is specified, CDs to this directory before running the program.
-0VAL (zero) Designates an initial value for the record separator $/. See also -l
-P runs the C Preprocessor on the script before compilation by Perl.
-IDIR with -P, tells the C preprocessor where to look for Include files. The directory is prepended to @INC.
-l [OCTNUM] enables automatic line-end processing, e.g., -l013.

Contents

Literals

Numeric:

123, 1_234, 123.4, 5E-10, 0xff (hex), 0377 (octal),

String:

'abc' literal string, no variable interpolation or escape characters, except \' and \\.
q/abc/. Almost any pair of delimiters can be used instead of //.

"abc" Variables are interpolated and escape sequences are processed.
qq/abc/.

`COMMAND` evaluates to the output of the COMMAND.
qx/COMMAND/.

Array:

(1, 2, 3). () is an empty array.
(1..4) is the same as (1,2,3,4),
likewise ('a'..'z').
qw/foo bar / is the same as ('foo','bar',).

Array reference:

[1,2,3]

Hash (associative array):

(KEY1, VAL1, KEY2, VAL2,)
Also (KEY1=> VAL1, KEY2=> VAL2,)


Hash reference:

{KEY1, VAL1, KEY2, VAL2,}
Code reference: sub {STATEMENTS}

Filehandles: <STDIN>, <STDOUT>, <STDERR>, <ARGV>, <DATA>.
User-specified: HANDLE, $VAR.

Globs: <PATTERN> evaluates to all filenames according to the pattern. Use <${VAR}> or glob $VAR to glob from a variable.

Here-Is: <<IDENTIFIER
Shell-style "here document."

Special tokens: __FILE__: filename; __LINE__: line number; __END__: end of program; remaining lines can be read using the filehandle DATA.

Contents

Variables

$var a simple scalar variable.
$var[28] 29th element of array @var.
$p = \@var now $p is a reference to array @var.
$$p[28] 29th element of array referenced by $p. Also, $p->[28].
$var[-1] last element of array @var.
$var[$i][$j] $jth element of the $ith element of array @var.
$var{'Feb'} one value from hash (associative array) %var.
$p = \%var now $p is a reference to hash %var.
$$p{'Feb'} a value from hash referenced by $p. Also, $p->{'Feb'}.
$#var last index of array @var.
@var the entire array; in a scalar context, the number of elements in the array.
@var[3,4,5] a slice of array @var.
@var{'a','b'} a slice of %var; same as ($var{'a'},$var{'b'}).
%var the entire hash; in a scalar context, true if the hash has elements.
$var{'a',1,} emulates a multidimensional array.
('a''z')[4,7,9] a slice of an array literal.
PKG::VAR a variable from a package, e.g., $pkg::var, @pkg::ary.
\OBJECT reference to an object, e.g., \$var, \%hash.
*NAME refers to all objects represented by NAME.
*n1 = *n2 makes n1 an alias for n2.
*n1 = $n2 makes $n1 an alias for $n2.

You can always use a {BLOCK} returning the right type of reference instead of the variable identifier, e.g., ${}, &{}. $$p is just a shorthand for ${$p}.

Contents

Operators

** Exponentiation
+ -  * /  Addition, subtraction, multiplication, division
% Modulo division i.e. remainder
& | ^ Bitwise AND, OR, exclusiveOR
>> << Bitwise shift right, left
|| && Logical OR, AND
. string Concatenation
x the left operand (an array or a string) repeated the number of times specified by the right operand
All of the above operators also have an assignment operator, e.g., .=
 
-> Dereference operator
\ Reference (unary)
! ~ Negation (unary), bitwise complement (unary)
++ -- Auto-increment (magical on strings), auto-decrement
== != Numeric equality, inequality
eq ne String equality, inequality
< > Numeric less than, greater than
lt gt String less than, greater than
<= >= Numeric less (greater) than or equal to
le ge String less (greater) than or equal to
<=> cmp Numeric (string) compare. Returns -1, 0, 1.
=~ !~ Search pattern, substitution, or translation (negated)
.. Range (scalar context) or enumeration (array context)
?: Alternation (if-then-else) operator
, Comma operator, also list element separator. You can also use =>.
not Low-precedence negation
and Low-precedence AND
or xor Low-precedence OR, exclusiveOR

All Perl functions can be used as list operators, in which case they have very high or very low precedence, depending on whether you look at the left or the right side of the operator. Only the operators not, and, or and xor have lower precedence.

A "list" is a list of expressions, variables, or lists. An array variable or an array slice may always be used instead of a list.

Parentheses can be added around the parameter lists to avoid precedence problems.

Contents

Statements

Every statement is an expression, optionally followed by a modifier, and terminated by a semicolon. The semicolon may be omitted if the statement is the final one in a BLOCK.

Execution of expressions can depend on other expressions using one of the modifiers if, unless, while or until, for example:

The logical operators ||, && or ?: also allow conditional execution:

Statements can be combined to form a BLOCK when enclosed in {}. Blocks may be used to control flow:

Program flow can be controlled with:

Special forms are:

which are guaranteed to perform BLOCK once before testing EXPR, and

which effectively turns BLOCK into an expression.

Contents

Subroutines, Packages and Modules

do f, require f, or use f

sub name {
     @arrayOfAllArgs
aka @_;
     $firstArg
aka $_[1]; $_[2] aka xxx;… ;
     statments;
     return }


&SUBROUTINE LIST Executes a SUBROUTINE declared by sub , and returns the value of the last expression evaluated in SUBROUTINE.
SUBROUTINE can be an expression yielding a reference to a code object.
The & may be omitted if the subroutine has been declared before being used.
[sub] BEGIN { EXPR; … } Defines a setup BLOCK called before execution.
[sub] END { EXPR; … } Defines a cleanup BLOCK called prior to termination.
sub NAME { EXPR; … } Designates NAME as a subroutine.
Parameters are passed by reference as array @_.
Returns the value of the last expression evaluated.
bless REF [,PACKAGE] Turns the object REF into an object in PACKAGE. Returns the reference.
caller [EXPR] Returns an array ($package,$file,$line,…) for a specific subroutine call. caller returns this info for the current subroutine, caller(1) for the caller of this subroutine, etc. Returns false if no caller.
do SUBROUTINE LIST Deprecated form of &SUBROUTINE.
goto &SUBROUTINE Substitutes a call to SUBROUTINE for the current subroutine.
import MODULE [ [VERSION] LIST ]
no MODULE [ LIST ] Cancels imported semantics. See use.
package NAME Designates the remainder of the current block as a package.
require EXPR£ If EXPR is numeric, requires Perl to be at least that version. Otherwise EXPR must be the name of a file that is included from the Perl library. Does not include more than once, and yields a fatal error if the file does not evaluate to a true value. If EXPR is a bare word, assumes extension .pm for the name of the file.
return EXPR
tie VAR, PACKAGE, [LIST] Can be used to bind a dbm or ndbm file to a hash. example:
BEGIN { @AnyDBM_File::ISA = qw(DB_File GDBM_File NDBM_File SDBM_File); }
use AnyDBM_File ;
tie %fin, "AnyDBM_File",$filein, O_RDWR, 0600 or die "Cannot open:\"$ts\" $! \n";

If O_RDONLY assignments fail without warning! (example:$fin{$key}="0909";)

untie VAR Breaks the binding between the variable and the package.
use MODULE [ [VERSION] LIST ] Imports semantics from the named module into the current package.

Contents

Object-Oriented Programming

Perl rules of object oriented programming:

Methods can be applied with:

Contents

Arithmetic Functions

exp EXPR£ e EXPR sin EXPR£ sine ( radians).
log EXPR£ natural logarithm (base e) cos EXPR£ cosine ( radians).
sqrt EXPR£ square root atan2 Y,X  arctangent of Y/X in the range -pi to pi.
rand [ EXPRrandom fractional number
between 0 and the value of EXPR.  
If EXPR is omitted,
between 0 and 1.
abs EXPR£ absolute value
srand [ EXPR ]    seed for rand int EXPR£ integer portion
time seconds since January 1, 1970.
Suitable for gmtime and localtime.

Contents

Conversion Functions

localtime EXPR£     Converts a time as returned by the time function to ctime(3) string.
                  Sun Aug 15 20:26:21 2010

In array context, returns a 9-element array with the time analyzed for the local time zone.
$mon has the range 0..11 and $wday has the range 0..6.
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); ## for display and log name
$month=(January,February,March,April,May,June,July,August,September,October,November,December)[$mon];
if ($mday< 10) { $mday= "0$mday" }; if (++$mon< 10) { $mon= "0$mon" }; $year = 1900 + $year;
if ($hour< 10) { $hour= "0$hour" }; if ( $min< 10) { $min= "0$min" }; if ( $sec< 10) { $sec = "0$sec" };

gmtime EXPR£     Converts a time as returned by the time function to a 9-element array Greenwich

chr EXPR£     Returns the character represented by the decimal value EXPR.
hex EXPR£     Returns the decimal value of EXPR interpreted as a hex string.
oct EXPR£     Returns the decimal value of EXPR interpreted as an octal string.
If EXPR starts off with 0x, interprets it as a hex string instead.
ord EXPR£     Returns the ASCII value of the first character of EXPR.

vec EXPR, OFFSET, BITS Treats string EXPR as a vector of unsigned integers, and yields the bit at OFFSET. BITS must be between 1 and 32. May be assigned to.

Contents

Structure Conversion

pack TEMPLATE, LIST Packs the values into a binary structure using TEMPLATE.
unpack TEMPLATE, EXPR Unpacks the structure EXPR into an array, using TEMPLATE.

TEMPLATE is a sequence of characters as follows:

Character may be followed by a decimal repeat count; an asterisk (*) specifies all remaining arguments.
If the format is preceded with %N, unpack returns an N-bit checksum instead.
Spaces may be included in the template for readability purposes.

Contents

String Functions

.Concatenation
chomp LIST£ Removes line endings from all elements of the list
returns (total) number of characters removed.
chop LIST£ Chops off the last character on all elements of the list
returns last chopped character.
crypt PLAINTEXT, SALT Encrypts a string.
eval EXPR£ EXPR is parsed and executed as if it were a Perl program.
returns value of the last expression evaluated.
If there is a syntax error or runtime error, an undefined string is returned by eval, and $@ error message. See eval Miscellaneous.
index STR, SUBSTR [, OFFSET ] position of SUBSTR in STR at or after OFFSET. If the substring is not found, returns -1 (but see $[ in section Special Variables).
rindex STR, SUBSTR [, OFFSET ] position of the last SUBSTR in STR at or before OFFSET.
length EXPR£ length in characters of value of EXPR.
quotemeta EXPR regular expression metacharacters quoted.
substr EXPR, OFFSET [ , LEN ] Extracts a substring of length LEN out of EXPR and returns it. If OFFSET is negative, counts from the end of the string. May be assigned to.
lc EXPR lowercase
lcfirst EXPR first character lowercase.
uc EXPR UPPERCASED
ucfirst EXPR first character Uppercased.

Contents

Array and List Functions

See   use List::Util qw(first max maxstr min minstr reduce shuffle sum);

delete $HASH{KEY} Deletes value from the hash at KEY.
Returns the deleted value unless HASH is tied to a package that does not support this.
each %HASH Returns a 2-element array consisting of the key and value for the next value of the hash.
Entries are returned in an unpredictable order.
After all values have been returned, a null array is returned.
The next call to each restarts iteration.
exists EXPR£ Checks if the specified key exists in its hash array.
grep EXPR, LIST
grep BLOCK LIST
Evaluates EXPR or BLOCK for each element of the LIST, locally setting $_ to refer to the element.
Modifying $_ will modify the corresponding element from LIST.
Returns the array of elements from LIST for which EXPR returned true.
join EXPR, LIST Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and
returns the string.
keys %HASH Returns an array of the keys of HASH.
map EXPR, LIST
map BLOCK LIST
Evaluates EXPR or BLOCK for each element of the LIST,
locally setting $_ to refer to the element.
Modifying $_ will modify the corresponding element from LIST. Returns the list of results.
pop @ARRAY Pops off and returns the last value of the array.
push @ARRAY, LIST Pushes the values of LIST onto the end of the array.
reverse LIST In array context, returns the LIST in reverse order. In scalar context: returns the first element of LIST with bytes reversed.
scalar @ARRAY Returns the number of elements in the array.
scalar %HASH Returns a true value if the hash has elements defined.
shift [ @ARRAY ] Shifts the first value of the array off and returns it, shortening the array by 1 and moving everything down. If @ARRAY is omitted, shifts @ARGV in main and @_ in subroutines.
sort [ SUBROUTINE ] LIST Sorts the LIST and returns the sorted array value. SUBROUTINE, if specified, must return less than zero, zero, or greater than zero, depending on how the elements of the array (available to the routine as $a and $b) are to be ordered. SUBROUTINE may be the name of a user-defined routine, or a BLOCK.
splice @ARRAY, OFFSET [ , LENGTH [ , LIST ] ] Removes the elements of @ARRAY designated by OFFSET and LENGTH, and replaces them with LIST (if specified). Returns the elements removed.
split [ PATTERN [ , EXPR£ [ , LIMIT ] ] ] Splits a string into an array of strings, and returns it. If LIMIT is specified, splits into at most that number of fields. If PATTERN is also omitted, splits at the whitespace. If not in array context, returns number of fields and splits to @_. See also Search and Replace.
unshift @ARRAY, LIST Prepends list to the front of the array, and returns the number of elements in the new array.
values %HASH Returns a normal array consisting of all the values of the named hash.

Contents

Regular Expressions

Each character matches itself, except + ? . * ^ $ ( ) [ ] { } | \.
The special meaning of these characters is escaped using a \.

Quantified subpatterns match as many times as possible.
When followed with a ? they match the minimum number of times. These are the quantifiers:

. matches any character, but not a newline unless it is a single-line match (see m//s).
() groups a series of pattern elements to a single element.
^ matches the beginning of the target.
In multiline mode (see m//m) also matches after every newline character.
$ matches the end of the line.
In multiline mode also matches before every newline character.
[] denotes a class of characters to match. [^] negates the class.
(||) matches one of the alternatives.
(?# comment )
(?: REGEXP ) does not make back-references.
(?= REGEXP ) Zero width positive look-ahead assertion.
(?! REGEXP ) Zero width negative look-ahead assertion.
(? MODIFIER ) Embedded pattern-match modifier. MODIFIER can be one or more of i, m, s, or x.
  • i igore case
  • x extension
+ matches the preceding pattern element one or more times.
? matches zero or one times.
* matches zero or more times.
{N,M} at least N and no more than M matchs
{N}means exactly N times
{N,} at least N times.

A \ escapes special meaning of the following character if non-alphanumeric,
A \ Introduces special usage for:
\w matches alphanumeric, including _, \W matches non-alphanumeric.
\s matches whitespace, \S matches non-whitespace.
\d matches digit, \D matches non-digit.
\A        \Z matches the beginning of the string, \Z matches the end.
\bmatches word boundaries, \B matches non-boundaries.
\GGo on where the previous m//g search left off.
\nNewline
\rReturn
\fFormfeed
\tTab
\w, \s and \d may be used within character classes, \b denotes backspace in this context.

Back-references:
\1\9 refer to matched subexpressions, grouped with (), inside the match.
\10 and up can also be used if the pattern matches that many subexpressions.

Variables local to the current block:
$` string preceding
$& string matched by the last successful pattern match.
$' string following
$+ last bracket matched by the last search pattern.
$1…$9…nbsp; 
$10… and up (only available if Contain subpatterns from the corresponding sets of parentheses in the last pattern successfully matched.)
match contained that many subpatterns.

With modifier x, whitespace can be used in the patterns for readability purposes.

Contents

Search and Replace

[EXPR =~ ] [m] /PATTERN/
         [g][i][m][o][s][x]

Searches EXPR (default: $_) for a pattern.
Prepend an m to use of alternate pair of delimiters.
In array context, an array is returned consisting of the subexpressions matched by the parentheses in the pattern, i.e., ($1,$2,$3,).
  • g global matches as many times as possible
  • i ignores case g
  • o interpolates variables only once.
  • m treats the string as multiple lines
  • s treats the string as a single line
  • x allows for regular expression extensions.

If PATTERN is empty, the most recent pattern from a previous match or replacement is used.
With g the match can be used as an iterator in scalar context.
?PATTERN? matches only once between calls to the reset operator.

[$VAR =~ ] s/PATTERN/SUBSTITUTION/
         [e][g][i][m][o][s][x]
substitues SUBSTITUTION for PATTERN in a string.
Returns number of substitutions made or false.
  • e evaluates SUBSTITUTION as a Perl
  • g replaces all occurrences of the pattern expression; for any other modifiers, see /PATTERN/ matching.
Almost any delimiter may replace the slashes;
If single quotes are delimiters, no interpretation is done.
If bracketing delimiters are used, PATTERN and REPLACEMENT may have their own delimiters, e.g., of EXPRs(foo)[bar].
If PATTERN is empty, the most recent pattern from a previous match or replacement is used.


[$VAR =~] tr/CHARS/REPLACEMENTS/          [c][d][s] Translates all occurrences of CHARS to the corresponding character in REPLACEMENTS.
y may be used instead of tr.
Returns the number of characters replaced.
  • c complements the SEARCHLIST
  • d deletes all characters found in SEARCHLIST that do not have a corresponding character in REPLACEMENTS
  • s squeezes all sequences of characters that are translated into the same target character into one occurrence of this character.
pos SCALAR Returns the position where the last m//g search left off for SCALAR. May be assigned to.
study $VAR£ Study the scalar variable $VAR in anticipation of performing many pattern matches on its contents before the variable is next modified.

Contents

File Test Operators

These unary operators takes one argument (or $_), filename or filehandle.
If the special argument _ (underscore) is passed, information is from the preceding test or stat .

-r -w -x  readable/writable/executable by effective uid/gid.
-R -W -X readable/writable/executable by real uid/gid.
-o -O owned by effective/real uid.
-e -z exists/has zero size.
-s exists and has non-zero size. Returns the size.
-f -d a plain file/ directory.
-l -S -p a symbolic link/ socket/ named pipe (FIFO).
-b -c a block/character special file.
-u -g -k setuid/setgid/sticky bit set.
-t filehandle (STDIN by default) is opened to a tty.
-T -B text/non-text (binary) file. Return true on a null file, or a file at EOF when testing a filehandle.
-M -A -C File modification / access / inode-change time. Measured in days. Value returned reflects the file age at the time the script started. See also $^T Special Variables.

Contents

File Operations

Functions operating on a list of files return the number of files successfully operated upon.
chmod LIST Changes the permissions of a list of files. The first element of the list must be the numerical mode.
chown LIST Changes the owner and group of a list of files. The first two elements of the list must be the numerical uid and gid.
truncate FILE, SIZE Truncates FILE to SIZE. FILE may be a filename or a filehandle.
lstat FILE Like stat, but does not traverse a final symbolic link.
mkdir DIR, MODE makes a directory with given permissions.(MODE) Sets $! on failure.
rename OLDNAME, NEWNAMEChanges the name of a file.
rmdir FILENAME£Deletes the directory if it is empty. Sets $! on failure.
stat FILE Returns a 13-element array
(0: $dev, 1: $ino, 2: $mode, 3: $nlink, 4: $uid, 5: $gid, 6: $rdev, 7: $size, 8: $atime, 9: $mtime, 10: $ctime, 11: $blksize, 12: $blocks).
FILE can be a filehandle, an expression evaluating to a filename, or _ to refer to the last file test operation or stat call. Returns a null list if the stat fails.
link OLDFILE, NEWFILE Creates a new filename linked to the old filename.
symlink OLDFILE, NEWFILE Creates a new filename symbolically linked to the old filename.
unlink LIST Deletes a list of files.
readlink EXPR£Returns the value of a symbolic link.
utime LIST Changes the access and modification times. The first two elements of the list must be the numerical access and modification times.

Contents

Input / Output

In input/output operations, FILEHANDLE may be a filehandle as opened by the open operator, a predefined filehandle (e.g., STDOUT) or a scalar variable that evaluates to the name of a filehandle to be used. dbmclose%HASHdbmopen%HASH,DBMNAME,MODE
<FILEHANDLE> In scalar context, reads a single line from the file opened on FILEHANDLE. In array context, reads the whole file.
< > Reads from the input stream formed by the files specified in @ARGV, or standard input if no arguments were supplied.
binmode FILEHANDLE Arranges for the file opened on FILEHANDLE to be read or written in binary mode as opposed to text mode (null operation on UNIX).
close FILEHANDLE Closes the file or pipe associated with the filehandle.
Deprecated, use untie instead.
Deprecated, use tie instead.
eof FILEHANDLE Returns true if the next read will return end of file, or if the file is not open.
eof Returns the EOF status for the last file read.
eof() Indicates EOF on the pseudo file formed of the files listed on the command line.
fcntl FILEHANDLE, FUNCTION, $VAR Implements the fcntl(2) function. This function has non-standard return values.
fileno FILEHANDLE Returns the file descriptor for a given (open) file.
flock FILEHANDLE, OPERATION Calls flock(2) on the file. OPERATION formed by adding 1 (shared), 2 (exclusive), 4 (non-blocking), or 8 (unlock).
getc [ FILEHANDLE ] Yields the next character from the file, or an empty string on end of file. If FILEHANDLE is omitted, reads from STDIN.
ioctl FILEHANDLE, FUNCTION, $VAR Performs >ioctl(2) on the file. This function has non-standard return values.
open FILEHANDLE [ , FILENAME ] Opens a file and associates it with FILEHANDLE. If FILENAME is omitted, the scalar variable of the same name as the FILEHANDLE must contain the filename.
The following filename conventions apply when opening a file.
FILE open FILE for input. Also "<FILE.
>FILE open FILE for output, creating it if necessary.
>>FILE open FILE in append mode.
+<FILE open FILE with read/write access (file must exist).
+>FILE open FILE with read/write access (file truncated).
|CMD opens a pipe to command CMD; forks if CMD is -.
CMD| opens a pipe from command CMD; forks if CMD is -.
FILE may be &FILEHND in which case the new filehandle is connected to the (previously opened) filehandle FILEHND. If it is &=N, FILE will be connected to the given file descriptor. open returns undef upon failure, true otherwise.
pipe READHANDLE, WRITEHANDLE Returns a pair of connected pipes.
print [ FILEHANDLE ] [ LIST£ ] Equivalent to print FILEHANDLE sprintf LIST.
printf[([FILEHANDLE] LIST£)] Equivalent to print FILEHANDLE sprintf(LIST).
read FILEHANDLE, $VAR, LENGTH [ , OFFSET ] Reads LENGTH binary bytes from the file into the variable at OFFSET. Returns number of bytes actually read.
seek FILEHANDLE, POSITION, WHENCE Arbitarily positions the file. Returns true if successful.
select [ FILEHANDLE ] Returns the currently selected filehandle. Sets the current default filehandle for output operations if FILEHANDLE is supplied.
select RBITS, WBITS, NBITS, TIMEOUT Performs a select(2) system call with the same parameters.
sprintf FORMAT, LIST Returns a string formatted by (almost all of) the usual printf(3) conventions.
sysread FILEHANDLE, $VAR, LENGTH [ , OFFSET ] Reads LENGTH bytes into $VAR at OFFSET.
syswrite FILEHANDLE, SCALAR, LENGTH [ , OFFSET ] Writes LENGTH bytes from SCALAR at OFFSET.
tell [ FILEHANDLE ] Returns the current file position for the file. If FILENAME is omitted, assumes the file last read.
write [ FILEHANDLE ] Writes a formatted record to the specified file, using the format associated with that file.

Contents

Formats

formline PICTURE, LIST
Formats LIST according to PICTURE and accumulates the result into $^A.

write [ FILEHANDLE ]
Writes a formatted record to the specified file, using the format associated with that file.

Formats are defined as:

FORMLIST pictures the lines, and contains the arguments which will give values to the fields in the lines. NAME defaults STDOUT

Picture fields are:

Use ^ instead of @ for multiline block filling.
Use ~ at the beginning of a line to suppress unwanted empty lines.
Use ~~ at the beginning of a line to have this format line repeated until all fields are exhausted.
Use $- to zero to force a page break on the next write.
See $^, $~, $^A, $^F, $- and $= Special Variables.

Contents

Directory Reading Routines

opendir DIRHANDLE, DIRNAME   Opens a directory on the handle specified.
closedir DIRHANDLE Closes a directory opened by opendir.
readdir DIRHANDLE Returns the next entry (or an array of entries) from the directory.
rewinddir DIRHANDLE Positions the directory to the beginning.
seekdir DIRHANDLE, POS Sets position for readdir on the directory.
telldir DIRHANDLE Returns the position in the directory.

Contents

System Interaction

alarm EXPR Schedules a SIGALRM to be delivered after EXPR seconds.
chdir [ EXPR ] Changes the working directory. Uses $ENV{"HOME"} or $ENV{"LOGNAME"} if EXPR is omitted.
chroot FILENAME£ Changes the root directory for the process and its children.
die [ LIST ] Prints the value of LIST to STDERR and exits with the current value of $! (errno).
If $! is 0, exits with the value of ($? >> 8).
If ($? >> 8) is 0, exits with 255. LIST defaults to "Died".
exec LIST Executes the system command in LIST; does not return.
exit [ EXPR ] Exits immediately with the value of EXPR, which defaults to 0 (zero).
Calls END routines and object destructors before exiting.
fork Does a fork(2) system call. Returns the process ID of the child to the parent process and zero to the child process.
getlogin Returns the current login name as known by the system.
getpgrp [ PID ] Returns the process group for process PID (0, or omitted, means the current process).
getppid Returns the process ID of the parent process.
getpriority WHICH, WHO Returns the current priority for a process, process group, or user.
glob PAT Returns a list of filenames that match the shell pattern PAT.
kill LIST Sends a signal to a list of processes.
The first element of the list must be the signal to send (either numeric, or its name as a string).
setpgrp PID, PGRP Sets the process group for the PID (0 means the current process).
setpriority WHICH, WHO, PRIORITY Sets the current priority for a process, process group, or a user.
sleep [ EXPR ] Causes the program to sleep for EXPR seconds, or forever if no EXPR. Returns the number of seconds actually slept.
syscall LIST Calls the system call specified in the first element of the list, passing the rest of the list as arguments to the call.
system LIST Executes the system command in LISTas exec LIST except that a fork is performed first, and the parent process waits for the child process to complete.
times Returns a 4-element array (0: $user,
1: $system,
2: $cuser,
3: $csystem)
giving the user and system times, in seconds, for this process and the children of this process.
umask [ EXPR ] Sets the umask for the process and returns the old one. If EXPR is omitted, returns current umask value.
wait Waits for a child process to terminate and returns the process ID of the deceased process (-1 if none). The status is returned in $?.
waitpid PID, FLAGS Performs the same function as the corresponding system call.
warn [ LIST ] Prints the message on STDERR like die, but doesn't exit. LIST defaults to "Warning: something's wrong".

Contents

Networking

accept NEWSOCKET, GENERICSOCKET Accepts a new socket.
bind SOCKET, NAME Binds the NAME to the SOCKET.
connect SOCKET, NAME Connects the NAME to the SOCKET.
getpeername SOCKET Returns the socket address of the other end of the SOCKET.
getsockname SOCKET Returns the name of the SOCKET.
getsockopt SOCKET, LEVEL, OPTNAME Returns the socket options.
listen SOCKET, QUEUESIZE Starts listening on the specified SOCKET.
recv SOCKET, SCALAR, LENGTH, FLAGS Receives a message on SOCKET.
send SOCKET, MSG, FLAGS [ , TO ] Sends a message on the SOCKET.
setsockopt SOCKET, LEVEL, OPTNAME, OPTVAL Sets the requested socket option.
shutdown SOCKET, HOW Shuts down a SOCKET.
socket SOCKET, DOMAIN, TYPE, PROTOCOL Creates a SOCKET in DOMAIN with TYPE and PROTOCOL.
socketpair SOCKET1, SOCKET2, DOMAIN, TYPE, PROTOCOL  Creates a pair of bidirectional sockets.

Contents

System V IPC

You need to require "sys/ipc.ph" before you can use the symbolic names of the operations.

msgctl ID, CMD, ARGS Calls msgctl(2). If CMD is &IPC_STAT then ARGS must be a variable.
msgget KEY, FLAGS Creates a message queue for KEY. Returns the message queue identifier.
msgsnd ID, MSG, FLAGS Sends MSG to queue ID.
msgrcv ID, $VAR, SIZE, TYPE, FLAGS Receives a message from queue ID into VAR.
semctl ID, SEMNUM, CMD, ARG Calls semctl(2). If CMD is &IPC_STAT of &GETALL then ARG must be a variable.
semget KEY, NSEMS, SIZE, FLAGS Creates a set of semaphores for KEY. Returns the message semaphore identifier.
semop KEY,Performs semaphore operations.
shmctl ID, CMD, ARG Calls shmctl(2). If CMD is &IPC_STAT then ARG must be a variable.
shmget KEY, SIZE, FLAGS Creates shared memory. Returns the shared memory segment identifier.
shmread ID, $VAR, POS, SIZE Reads at most SIZE bytes of the contents of shared memory segment ID starting at offset POS into VAR.
shmwrite ID, STRING, POS, SIZE Writes at most SIZE bytes of STRING into the contents of shared memory segment ID at offset POS.

Contents

Miscellaneous

defined EXPR Tests whether the lvalue EXPR has an value.
undef [ LVALUE ] Undefines the LVALUE. Always returns the undefined value.
do FILENAME Executes FILENAME as a Perl script. See also require Subroutines, Packages and Modules.
dump [ LABEL ] core dump, contiune at LABEL.
eval { EXPR ;}   Executes the code between { and }. Traps runtime errors as described with eval(EXPR), in the section String Functions.
local VARIABLE
local ( LIST ) Creates a scope for the listed variables local to the enclosing block, subroutine or eval.
my VARIABLE
my ( LIST ) Creates a scope for the listed variables lexically local to the enclosing block, subroutine or eval.
ref EXPR£ Returns a true value if EXPR is a reference. Returns the package name if EXPR has been blessed into a package.
reset [ LLLL ] Resets ?? searches so that they work again. LLLL is a list of single letters. All variables and arrays beginning with one of those letters are reset to their pristine state. Only affects the current package.
scalar EXPR Evaluates EXPR in scalar context.
wantarray Returns true if the current context expects an array value.

Contents

Information from System Files

passwd returns ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell)
getpwent Gets next user information.
getpwnam NAME Gets information by name.
getpwuid UID Gets information by user ID.
endpwent Ends lookup processing.
setpwent Resets lookup processing.
 
group returns ($name, $passwd, $gid, $members).
getgrgid GID Gets information by group ID.
getgrnam NAME Gets information by name.
getgrent Gets next information.
setgrent Resets lookup processing.
endgrent Ends lookup processing.
 
hosts returns ($name, $aliases, $addrtype, $length, @addrs).
gethostbyaddr ADDR, ADDRTYPE Gets information by IP address.
gethostbyname NAME Gets information by hostname.
gethostent Gets next host information.
sethostent STAYOPEN Resets lookup processing.
endhostent Ends lookup processing.
 
networks returns ($name, $aliases, $addrtype, $net).
getnetbyaddr ADDR, TYPE Gets information by address and type.
getnetbyname NAME Gets information by network name.
getnetent Gets next network information.
setnetent STAYOPEN Resets lookup processing.
endnetent Ends lookup processing.
 
services returns ($name, $aliases, $port, $proto).
getservbyname NAME, PROTO Gets information by service name.
getservbyport PORT, PROTO Gets information by service port.
getservent Gets next service information.
setservent STAYOPEN Resets lookup processing.
endservent Ends lookup processing.
 
protocols returns ($name, $aliases, $proto).
getprotobyname NAME Gets information by protocol name.
getprotobynumber NUMBER Gets information by protocol number.
getprotoent Gets next protocol information.
setprotoent STAYOPEN Resets lookup processing.
endprotoent Ends lookup processing.

Contents

Special Variables

global and should be localized in subroutines:
$. current input line number of the last filehandle that was read.
$/ input record separator, newline by default. May be multicharacter.
$" separator that joins elements of arrays interpolated in strings.
$\ output record separator for the print operator.
$, output field separator ""
$; subscript separator for multidimensional array emulation. Default \034
$? status returned by the last `` command, pipe close or system operator.
$! in a numeric context, yields current value of errno.
in a string context, yields corresponding error string.
$@ error message from the last eval or do EXPR command.
$: set of characters after which a string may be broken to fill continuation fields (starting with ^) in a format.
$0 name of the file containing the Perl script being executed. May be assigned to.
$$ process ID of the currently executing Perl program. Altered (in child process) by fork.
$< real user ID of this process.
$> effective
$( real group ID of this process.
$) effective
$^A accumulator for formline and write operations.
$^F highest system file descriptor, ordinarily 2.
$^I In-place edit extension as passed to Perl using -i.
$^L Formfeed character used in formats.
$^T time (as delivered by time) when the program started. used by file test operators -M, -A and -C.
$] perl version number, e.g., 5.001.
$^D debug flags as passed to perl using -D.
$^W value of the -w option as passed to Perl.
$^X name by which the currently executing program was invoked.
$^P Internal debugging flag.
$[ index of the first element in an array, and of the first character in a substring. Default is 0. Deprecated.
$# output format for printed numbers. Deprecated.
$* Set to 1 to do multiline matching within strings. Deprecated, see m and s modifiers Search and Replace.
 
context dependent and need not be localized:
$% current page number of the currently selected output channel.
$= page length of the current output channel. Default is 60 lines.
$- number of lines remaining on the page.
$~ name of the current report format.
$^ name of the current top-of-page format.
$| If set to nonzero, flushs after write or print on currently selected output channel. Default is 0.
$ARGV name of the current file when reading from <>.
 
local to the current block:
$& string matched by the last successful pattern match.
$` string preceding ""
$' string following ""
$+ last bracket matched by the last search pattern.
$1$9…   Contain subpatterns from the corresponding sets of parentheses in the last pattern successfully matched.
$10… and up are only available if match contained that many subpatterns.

Contents

Special Arrays

@ARGV command-line arguments for the script (not including the command name).
@EXPORT Names the methods a package exports by default.
@EXPORT_OK  Names the methods a package can export upon explicit request.
@INC directories to search for do FILENAME and require
@ISA base classes of a package.
@_ Parameter array for subroutines. Also used by split if not in array context.
%ENV current environment.
%INC List of files that have been included with require or do.
%OVERLOAD used to overload operators in a package.
%SIG Used to set signal handlers

Contents

Environment Variables

Perl uses the following environment variables.

HOME default for chdir
LOGDIR default for chdir without argument and HOME is not set.
PATH Used for subprocesses, and the Perl script with -S
PERL5LIB  colon-separated list of directories to search for library files before looking in the standard library and the current directory.
PERL5DB The command to get the debugger code. Default: BEGIN { require 'perl5db.pl' }.
PERLLIB Used instead of PERL5LIB if the latter is not defined.

Contents

The Perl Debugger

Invoked with perl -d. DGG's Version

o
h Prints out help.
T Prints a stack trace.
s Single steps.
n Single steps around subroutine call.
RETURN key Repeats last s or n.
r current subroutine.
c [ LINE ] Continues (until LINE, or another breakpoint, or exit).
p EXPR outputs EXPR.
l [ RANGE ] Lists a range of lines. RANGE may be a number, start-end, start+amount, or a subroutine name.
If RANGE is omitted, lists next window.
w Lists window around current line.
- Lists previous window.
f FILE Switches to FILE and starts listing it.
l SUB the named subroutine.
S names of all subroutines.
/PATTERN/ Searches forward for PATTERN.
?PATTERN? Searches backward
b [ LINE [ CONDITION ] ]   Sets breakpoint at LINE; default is the current line.
b SUB [ CONDITION ] Sets breakpoint at the subroutine.
d [ LINE ] Deletes breakpoint at the given line.
D Deletes all breakpoints.
L Lists lines that have breakpoints or actions.
a LINE COMMAND Sets an action for line.
A Deletes all line actions.
< COMMAND Sets an action to be executed before every debugger prompt.
> COMMAND Sets an action to be executed before every s, c or n command.
V [ PACKAGE [ VARS ] ]   Lists all variables in a package. Default package is main.
X [ VARS ] Like V, but assumes current package.
! [ [-]NUMBER ] Re-executes a command. Default is the previous command.
H [ -NUMBER ] Displays the last -NUMBER commands of more than one letter.
t Toggles trace mode.
= [ ALIAS VALUE ] Sets alias, or lists current aliases.
q Quits. You may also use your EOF key character.
COMMAND Executes COMMAND as a Perl statement.

Contents

Last updated 22 March 2001
[Links updated 7 September 2003]

Text copyright © 1996 Johan Vromans
HTML copyright © 1996-2003 Rex Swain
Adapted from Rex Swain's HTMLified with minor modifications by Dennis German.
Reports of errors or omissions appreciated