# Built-in Functions Alphabetical index of every Perl 5 built-in. The content mirrors `perldoc perlfunc` with pperl-specific divergences flagged inline on each detail page. For an alternate browsing view grouped by problem domain see [Built-in Functions by Category](perlfunc-by-category). ## A - [**`abs`**](perlfunc/abs) — Return the absolute value of a number. - [**`accept`**](perlfunc/accept) — Accept an incoming connection on a listening socket. - [**`alarm`**](perlfunc/alarm) — Schedule a `SIGALRM` to be delivered to the current process after a whole number of wallclock seconds. - [**`all`**](perlfunc/all) — Test whether `BLOCK` returns true for **every** element of `LIST`. - [**`any`**](perlfunc/any) — Return true if `BLOCK` yields true for at least one element of `LIST`. - [**`atan2`**](perlfunc/atan2) — Arc tangent of `Y/X` in the range -π to π. ## B - [**`bind`**](perlfunc/bind) — Attach a local address to a socket. - [**`binmode`**](perlfunc/binmode) — Set the I/O layer stack on a filehandle — typically to make it deliver raw bytes, or to attach a character encoding. - [**`bless`**](perlfunc/bless) — Mark the thing a reference points at as an object in a package. - [**`break`**](perlfunc/break) — Break out of a `given` block. ## C - [**`caller`**](perlfunc/caller) — Return information about the subroutine, [`eval`](perlfunc/eval), or [`require`](perlfunc/require) that called the currently executing code. - [**`catch`**](perlfunc/catch) — Handle an exception thrown by a preceding [`try`](perlfunc/try) block. - [**`chdir`**](perlfunc/chdir) — Change the process's current working directory. - [**`chmod`**](perlfunc/chmod) — Change the permission bits of a list of files. - [**`chomp`**](perlfunc/chomp) — Strip the trailing input record separator from a string in place. - [**`chop`**](perlfunc/chop) — Remove the last character from a string and return it. - [**`chown`**](perlfunc/chown) — Change the owner and group of a list of files. - [**`chr`**](perlfunc/chr) — Return the character whose codepoint is the given number. - [**`chroot`**](perlfunc/chroot) — Change the root directory of the current process and every child it later spawns. - [**`class`**](perlfunc/class) — Declare a namespace that behaves as a native object class. - [**`close`**](perlfunc/close) — Close a filehandle, flush its buffers, and release the underlying file descriptor. - [**`closedir`**](perlfunc/closedir) — Close a directory handle opened by [`opendir`](perlfunc/opendir). - [**`connect`**](perlfunc/connect) — Initiate a connection from a socket to a remote address. - [**`continue`**](perlfunc/continue) — Attach a block to a loop that runs after every iteration, just before the condition is re-tested. - [**`cos`**](perlfunc/cos) — Return the cosine of a number given in radians. - [**`crypt`**](perlfunc/crypt) — One-way `passwd(5)`-style hashing of a plaintext string with a salt. ## D - [**`dbmclose`**](perlfunc/dbmclose) — Break the binding between a DBM file and a hash previously attached by [`dbmopen`](perlfunc/dbmopen). - [**`dbmopen`**](perlfunc/dbmopen) — Bind a DBM file on disk to a hash so hash reads and writes become lookups and stores in the database. - [**`defer`**](perlfunc/defer) — Schedule a block to run when the enclosing scope exits, for any reason. - [**`defined`**](perlfunc/defined) — Test whether a value, variable, or subroutine is defined. - [**`delete`**](perlfunc/delete) — Remove the named key-value pair(s) from a hash, or element(s) from an array, and return what was removed. - [**`die`**](perlfunc/die) — Raise an exception. - [**`do`**](perlfunc/do) — Execute a block of code or run a Perl source file as if it were part of the current program. - [**`dump`**](perlfunc/dump) — Cause the running program to produce a core dump immediately. ## E - [**`each`**](perlfunc/each) — Step through a hash or array one entry at a time. - [**`endgrent`**](perlfunc/endgrent) — Close the group database after iterating it. - [**`endhostent`**](perlfunc/endhostent) — Close the hosts database after iteration. - [**`endnetent`**](perlfunc/endnetent) — Close the networks database after iteration. - [**`endprotoent`**](perlfunc/endprotoent) — Close the protocols database after iteration. - [**`endpwent`**](perlfunc/endpwent) — Close the passwd-database iterator opened by [`getpwent`](perlfunc/getpwent) or [`setpwent`](perlfunc/setpwent). - [**`endservent`**](perlfunc/endservent) — Close the services database after a walk with [`getservent`](perlfunc/getservent). - [**`eof`**](perlfunc/eof) — Test a filehandle for end-of-file. - [**`eval`**](perlfunc/eval) — Run a piece of Perl code with any fatal error trapped instead of killing the program. - [**`evalbytes`**](perlfunc/evalbytes) — Compile and run a string of Perl source, forcing the source to be interpreted as **bytes** rather than characters. - [**`exec`**](perlfunc/exec) — Abandon this program and run another in the same process. - [**`exists`**](perlfunc/exists) — Test whether a hash or array element, or a named subroutine, is present — without creating it and without caring what it holds. - [**`exit`**](perlfunc/exit) — Terminate the program with a status value. - [**`exp`**](perlfunc/exp) — Raise *e* to a power. ## F - [**`fc`**](perlfunc/fc) — Return the Unicode casefolded form of a string for case-insensitive comparison. - [**`fcntl`**](perlfunc/fcntl) — Perform a `fcntl(2)` file-control operation on a filehandle. - [**`field`**](perlfunc/field) — Declare a per-instance variable inside a [`class`](perlfunc/class) block. - [**`fileno`**](perlfunc/fileno) — Return the OS-level file descriptor number behind a filehandle. - [**`finally`**](perlfunc/finally) — Run cleanup code on the way out of a `try`/`catch`, whether the body succeeded, threw, or jumped away. - [**`flock`**](perlfunc/flock) — Place an advisory lock on an open file. - [**`fork`**](perlfunc/fork) — Create a new process running the same program at the same point. - [**`format`**](perlfunc/format) — Declare a picture-based report template for use by [`write`](perlfunc/write). - [**`formline`**](perlfunc/formline) — Format a list of values into a picture string and append the result to the format accumulator [`$^A`](perlvar). ## G - [**`getc`**](perlfunc/getc) — Read the next single character from a filehandle. - [**`getgrent`**](perlfunc/getgrent) — Read the next entry from the system group database. - [**`getgrgid`**](perlfunc/getgrgid) — Look up a group record by numeric group ID. - [**`getgrnam`**](perlfunc/getgrnam) — Look up a Unix group by name and return its `/etc/group` record. - [**`gethostbyaddr`**](perlfunc/gethostbyaddr) — Look up a host record by its packed IP address. - [**`gethostbyname`**](perlfunc/gethostbyname) — Look up a host record by DNS name. - [**`gethostent`**](perlfunc/gethostent) — Fetch the next entry from the host database. - [**`getlogin`**](perlfunc/getlogin) — Return the login name of the user associated with the controlling terminal. - [**`getnetbyaddr`**](perlfunc/getnetbyaddr) — Look up a network record by its numeric network address. - [**`getnetbyname`**](perlfunc/getnetbyname) — Look up a network record by name. - [**`getnetent`**](perlfunc/getnetent) — Read the next entry from the networks database. - [**`getpeername`**](perlfunc/getpeername) — Return the address of the remote end of a connected socket. - [**`getpgrp`**](perlfunc/getpgrp) — Return the POSIX process-group ID that a process belongs to. - [**`getppid`**](perlfunc/getppid) — Return the process ID of the current process's parent. - [**`getpriority`**](perlfunc/getpriority) — Return the current scheduling nice value of a process, a process group, or a user. - [**`getprotobyname`**](perlfunc/getprotobyname) — Look up an IP protocol by its textual name and return its database entry. - [**`getprotobynumber`**](perlfunc/getprotobynumber) — Look up a network protocol entry by its assigned protocol number. - [**`getprotoent`**](perlfunc/getprotoent) — Fetch the next entry from the protocols database. - [**`getpwent`**](perlfunc/getpwent) — Return the next entry from the system password database. - [**`getpwnam`**](perlfunc/getpwnam) — Look up a user's passwd record by login name. - [**`getpwuid`**](perlfunc/getpwuid) — Look up a user's passwd record by numeric UID. - [**`getservbyname`**](perlfunc/getservbyname) — Look up a network service by its textual name and protocol. - [**`getservbyport`**](perlfunc/getservbyport) — Look up a network service by its numeric port and protocol. - [**`getservent`**](perlfunc/getservent) — Read the next entry from the system services database. - [**`getsockname`**](perlfunc/getsockname) — Return the local address of a connected or bound socket. - [**`getsockopt`**](perlfunc/getsockopt) — Read one socket option out of the kernel as an opaque packed string. - [**`glob`**](perlfunc/glob) — Expand a shell-style filename pattern into the list of matching paths. - [**`gmtime`**](perlfunc/gmtime) — Convert an epoch time to a broken-down UTC time, either as a 9-element list or as a `ctime(3)`-style string. - [**`goto`**](perlfunc/goto) — Transfer execution elsewhere in the program without returning. - [**`grep`**](perlfunc/grep) — Filter a list to the elements where the block or expression is true. ## H - [**`hex`**](perlfunc/hex) — Interpret a string as a hexadecimal numeral and return its numeric value. ## I - [**`import`**](perlfunc/import) — Populate the caller's namespace with names a module chooses to export. - [**`index`**](perlfunc/index) — Find the position of a substring inside a string. - [**`int`**](perlfunc/int) — Return the integer portion of a number, truncating toward zero. - [**`ioctl`**](perlfunc/ioctl) — Perform a device-control `ioctl(2)` system call on a filehandle. - [**`isa`**](perlfunc/isa) — Test whether an object is an instance of a class or of any subclass derived from it. ## J - [**`join`**](perlfunc/join) — Concatenate a list of strings with a separator between each adjacent pair, and return the single resulting string. ## K - [**`keys`**](perlfunc/keys) — List all keys of a hash, or all indices of an array. - [**`kill`**](perlfunc/kill) — Send a signal to a list of processes. ## L - [**`last`**](perlfunc/last) — Exit a loop immediately, skipping the rest of the body and the [`continue`](perlfunc/continue) block. - [**`lc`**](perlfunc/lc) — Return a lowercased copy of a string. - [**`lcfirst`**](perlfunc/lcfirst) — Return a copy of a string with its first character lowercased. - [**`length`**](perlfunc/length) — Return the number of characters in a string. - [**`link`**](perlfunc/link) — Create a hard link from `NEWFILE` to the existing `OLDFILE`. - [**`listen`**](perlfunc/listen) — Mark a socket as passive so it can accept incoming connections. - [**`local`**](perlfunc/local) — Save the current value of a package variable and restore it when the enclosing scope exits. - [**`localtime`**](perlfunc/localtime) — Convert an epoch time to a broken-down calendar time in the local time zone. - [**`lock`**](perlfunc/lock) — Place an advisory lock on a shared variable, array, hash, or subroutine until the lock goes out of scope. - [**`log`**](perlfunc/log) — Return the natural logarithm (base *e*) of a number. - [**`lstat`**](perlfunc/lstat) — Return the 13-element status list for a path **without** following a symbolic link. ## M - [**`m//`**](perlfunc/m) — Search a string for a pattern and report whether — and what — it matched. - [**`map`**](perlfunc/map) — Apply a block or expression to each element of a list and return the flattened results. - [**`method`**](perlfunc/method) — Declare a named instance method inside a [`class`](perlfunc/class) block. - [**`mkdir`**](perlfunc/mkdir) — Create a single directory on the filesystem. - [**`msgctl`**](perlfunc/msgctl) — Perform a control operation on a System V IPC message queue. - [**`msgget`**](perlfunc/msgget) — Create or look up a System V IPC message queue and return its id. - [**`msgrcv`**](perlfunc/msgrcv) — Receive a message from a System V IPC message queue. - [**`msgsnd`**](perlfunc/msgsnd) — Send a message to a System V IPC message queue. - [**`my`**](perlfunc/my) — Declare one or more lexically scoped variables. ## N - [**`next`**](perlfunc/next) — Start the next iteration of the enclosing loop immediately. - [**`no`**](perlfunc/no) — The compile-time inverse of [`use`](perlfunc/use) — call a module's `unimport` method to turn off what `use` turned on. ## O - [**`oct`**](perlfunc/oct) — Interpret a string as a number written in octal, hexadecimal, or binary, and return the resulting integer. - [**`open`**](perlfunc/open) — Associate a filehandle with a file, a command, or an in-memory scalar. - [**`opendir`**](perlfunc/opendir) — Open a directory for reading. - [**`ord`**](perlfunc/ord) — Return the Unicode code point of the first character of a string. - [**`our`**](perlfunc/our) — Declare a lexically scoped alias to a package variable. ## P - [**`pack`**](perlfunc/pack) — Convert a list of Perl values into a binary string according to a template. - [**`package`**](perlfunc/package) — Declare the compile-time namespace for the declarations that follow. - [**`pipe`**](perlfunc/pipe) — Open a pair of connected filehandles — one for reading, one for writing. - [**`pop`**](perlfunc/pop) — Remove and return the last element of an array. - [**`pos`**](perlfunc/pos) — Report or set where the next `/g` regex match will resume in a string. - [**`print`**](perlfunc/print) — Write a list of values to a filehandle. - [**`printf`**](perlfunc/printf) — Write a formatted string to a filehandle. - [**`prototype`**](perlfunc/prototype) — Return the prototype string of a subroutine, or [`undef`](perlfunc/undef) if it has none. - [**`push`**](perlfunc/push) — Append one or more values to the end of an array. ## Q - [**`q//`**](perlfunc/q) — Single-quoted string literal with a choice of delimiter. - [**`qq//`**](perlfunc/qq) — Build a double-quoted, interpolated string with a delimiter you pick. - [**`qr//`**](perlfunc/qr) — Compile a pattern once and hand back a reusable regex object. - [**`quotemeta`**](perlfunc/quotemeta) — Return a copy of a string with every regex-significant character backslash-escaped, so the result can be interpolated into a pattern and match its own literal content. - [**`qw//`**](perlfunc/qw) — Build a list of barewords by splitting a delimited string on whitespace, without quoting or comma-separating each word. - [**`qx//`**](perlfunc/qx) — Run a shell command and capture its standard output. ## R - [**`rand`**](perlfunc/rand) — Return a pseudo-random floating-point number in the half-open range `[0, EXPR)`. - [**`read`**](perlfunc/read) — Read a fixed amount of buffered input from a filehandle into a scalar. - [**`readdir`**](perlfunc/readdir) — Read the next entry, or all remaining entries, from a directory handle opened by [`opendir`](perlfunc/opendir). - [**`readline`**](perlfunc/readline) — Read one or more records from a filehandle. - [**`readlink`**](perlfunc/readlink) — Return the target path a symbolic link points to. - [**`readpipe`**](perlfunc/readpipe) — Run a shell command and return its standard output. - [**`recv`**](perlfunc/recv) — Read an incoming message from a socket into a scalar. - [**`redo`**](perlfunc/redo) — Restart the current iteration of a loop without re-testing the condition and without running the [`continue`](perlfunc/continue) block. - [**`ref`**](perlfunc/ref) — Return a string describing what a reference points to. - [**`rename`**](perlfunc/rename) — Change the name of a file. - [**`require`**](perlfunc/require) — Load a Perl source file at runtime, or demand a minimum Perl version. - [**`reset`**](perlfunc/reset) — Clear every package variable whose name begins with one of a set of letters, and re-arm one-shot [`m?pattern?`](perlfunc/m) matches. - [**`return`**](perlfunc/return) — Leave the current subroutine, [`eval`](perlfunc/eval), `do FILE`, [`sort`](perlfunc/sort) block, or regex eval block, yielding a value to the caller. - [**`reverse`**](perlfunc/reverse) — Reverse a list — or, in scalar context, reverse the characters of a string. - [**`rewinddir`**](perlfunc/rewinddir) — Reset a directory handle to the start of its listing. - [**`rindex`**](perlfunc/rindex) — Find the position of the **last** occurrence of a substring inside a string. - [**`rmdir`**](perlfunc/rmdir) — Remove an empty directory. ## S - [**`s///`**](perlfunc/s) — Search a string for a pattern and replace every match with a replacement. - [**`say`**](perlfunc/say) — Print a list of values followed by a newline. - [**`scalar`**](perlfunc/scalar) — Force `EXPR` to be evaluated in scalar context and return its value. - [**`seek`**](perlfunc/seek) — Reposition a filehandle for random-access reads or writes. - [**`seekdir`**](perlfunc/seekdir) — Restore a directory handle to a position previously captured by [`telldir`](perlfunc/telldir). - [**`select`**](perlfunc/select) — Either set the default output filehandle, or call the `select(2)` syscall for I/O multiplexing. Same name, two unrelated jobs — disambiguated by argument count. - [**`semctl`**](perlfunc/semctl) — Perform a control operation on a System V semaphore set. - [**`semget`**](perlfunc/semget) — Create or look up a System V semaphore set and return its identifier. - [**`semop`**](perlfunc/semop) — Perform one or more System V semaphore operations atomically. - [**`send`**](perlfunc/send) — Send a message on a socket. - [**`setgrent`**](perlfunc/setgrent) — Rewind the group-database iterator back to the first entry. - [**`sethostent`**](perlfunc/sethostent) — Open or rewind the hosts database for iteration. - [**`setnetent`**](perlfunc/setnetent) — Open or rewind the networks database for iteration. - [**`setpgrp`**](perlfunc/setpgrp) — Set the process group of a process. - [**`setpriority`**](perlfunc/setpriority) — Set the scheduling priority (nice value) of a process, process group, or user. - [**`setprotoent`**](perlfunc/setprotoent) — Open the protocols database and prepare it for sequential reads. - [**`setpwent`**](perlfunc/setpwent) — Rewind the password-database iterator so the next [`getpwent`](perlfunc/getpwent) call returns the first entry again. - [**`setservent`**](perlfunc/setservent) — Rewind the services database and optionally keep it open across lookups. - [**`setsockopt`**](perlfunc/setsockopt) — Set a kernel-level option on an open socket. - [**`shift`**](perlfunc/shift) — Remove and return the first element of an array. - [**`shmctl`**](perlfunc/shmctl) — Control or query a System V shared memory segment. - [**`shmget`**](perlfunc/shmget) — Create or look up a System V shared memory segment and return its identifier. - [**`shmread`**](perlfunc/shmread) — Copy bytes out of a System V shared memory segment into a Perl scalar. - [**`shmwrite`**](perlfunc/shmwrite) — Copy bytes into a System V shared memory segment. - [**`shutdown`**](perlfunc/shutdown) — Shut down one direction of a socket connection, or both. - [**`sin`**](perlfunc/sin) — Return the sine of a number given in radians. - [**`sleep`**](perlfunc/sleep) — Pause the process for a number of whole seconds. - [**`socket`**](perlfunc/socket) — Create a socket filehandle. - [**`socketpair`**](perlfunc/socketpair) — Create an unnamed, connected pair of sockets that talk to each other. - [**`sort`**](perlfunc/sort) — Sort a list, returning the sorted list. - [**`splice`**](perlfunc/splice) — Remove and/or replace a slice of an array in place, and return the removed elements. - [**`split`**](perlfunc/split) — Cut a string into a list of fields using a regex separator. - [**`sprintf`**](perlfunc/sprintf) — Build a formatted string from a format template and a list of values. - [**`sqrt`**](perlfunc/sqrt) — Return the non-negative square root of `EXPR`. - [**`srand`**](perlfunc/srand) — Seed the pseudo-random number generator. - [**`stat`**](perlfunc/stat) — Get a file's status information. - [**`state`**](perlfunc/state) — Declare a lexically scoped variable whose value persists across calls to its enclosing subroutine. - [**`study`**](perlfunc/study) — A no-op retained for source compatibility with older Perl code. - [**`sub`**](perlfunc/sub) — Declare or define a subroutine. - [**`substr`**](perlfunc/substr) — Extract, replace, or alias a contiguous slice of a string. - [**`symlink`**](perlfunc/symlink) — Create a symbolic link at `NEWFILE` that points at the string `OLDFILE`. - [**`syscall`**](perlfunc/syscall) — Invoke a raw system call by its kernel number, passing the remaining arguments as `int` or as a pointer to a string buffer. - [**`sysopen`**](perlfunc/sysopen) — Open a file the low-level way, passing an integer `MODE` bitmask straight through to the underlying [`open(2)`](../Fcntl) system call. - [**`sysread`**](perlfunc/sysread) — Read raw bytes from a filehandle by calling the underlying `read(2)` system call. - [**`sysseek`**](perlfunc/sysseek) — Reposition a filehandle at the system level, bypassing PerlIO buffering. - [**`system`**](perlfunc/system) — Run a separate program and wait for it to finish. - [**`syswrite`**](perlfunc/syswrite) — Write bytes to a filehandle with the raw `write(2)` system call, bypassing Perl's buffered I/O. ## T - [**`tell`**](perlfunc/tell) — Return the current byte position of a filehandle. - [**`telldir`**](perlfunc/telldir) — Return the current read position of a directory handle as an opaque token. - [**`tie`**](perlfunc/tie) — Bind a variable to a class so that every access to the variable dispatches through that class's methods. - [**`tied`**](perlfunc/tied) — Return the object backing a tied variable. - [**`time`**](perlfunc/time) — Return the current wall-clock time as an integer number of seconds since the system epoch. - [**`times`**](perlfunc/times) — Report CPU time consumed by this process and its terminated children. - [**`tr///`**](perlfunc/tr) — Character-by-character substitution. `tr` scans a string and replaces every occurrence of a character from `SEARCHLIST` with the positionally corresponding character from `REPLACEMENTLIST`, returning the count of characters it touched. - [**`truncate`**](perlfunc/truncate) — Shorten (or extend) a file to an exact byte length. - [**`try`**](perlfunc/try) — Run a block and divert any exception it throws into a `catch` block, with an optional `finally` block that always runs on the way out. ## U - [**`uc`**](perlfunc/uc) — Return an uppercased copy of a string. - [**`ucfirst`**](perlfunc/ucfirst) — Return a copy of a string with its first character titlecased. - [**`umask`**](perlfunc/umask) — Set or read the process file-creation mode mask. - [**`undef`**](perlfunc/undef) — The undefined value, and the operator that produces it. - [**`unlink`**](perlfunc/unlink) — Remove one or more directory entries that name files. - [**`unpack`**](perlfunc/unpack) — Extract typed values from a binary or fixed-width string according to a template. - [**`unshift`**](perlfunc/unshift) — Prepend one or more values to the start of an array and return the array's new length. - [**`untie`**](perlfunc/untie) — Break the binding between a variable and its tied class. - [**`use`**](perlfunc/use) — Load a module at compile time and import its symbols into the current package. - [**`utime`**](perlfunc/utime) — Set access and modification times on a list of files. ## V - [**`values`**](perlfunc/values) — List every value of a hash (or every element of an array). - [**`vec`**](perlfunc/vec) — Read or write a fixed-width slot inside a string treated as a packed bit vector. ## W - [**`wait`**](perlfunc/wait) — Block until any child process exits and reap it. - [**`waitpid`**](perlfunc/waitpid) — Wait for a specific child process to terminate and reap it. - [**`wantarray`**](perlfunc/wantarray) — Report the calling context of the currently executing subroutine. - [**`warn`**](perlfunc/warn) — Emit a warning to `STDERR`. - [**`write`**](perlfunc/write) — Render one record to a filehandle through its associated [`format`](perlfunc/format). ## Y - [**`y///`**](perlfunc/y) — Transliterate characters in a string. `y///` is a synonym for [`tr///`](perlfunc/tr) — the two are identical in every respect. ## __ (double-underscored) - [**`__CLASS__`**](perlfunc/__CLASS__) — Return the class name of the instance currently being acted on. - [**`__FILE__`**](perlfunc/__FILE__) — The name of the source file the token is compiled in. - [**`__LINE__`**](perlfunc/__LINE__) — A compile-time token that evaluates to the line number at which it appears in the source. - [**`__PACKAGE__`**](perlfunc/__PACKAGE__) — Return the name of the package currently in effect at the point where the token appears. - [**`__SUB__`**](perlfunc/__SUB__) — Return a reference to the currently executing subroutine. ```{toctree} :hidden: :maxdepth: 1 perlfunc-by-category perlfunc/__CLASS__ perlfunc/__FILE__ perlfunc/__LINE__ perlfunc/__PACKAGE__ perlfunc/__SUB__ perlfunc/abs perlfunc/accept perlfunc/alarm perlfunc/all perlfunc/any perlfunc/atan2 perlfunc/bind perlfunc/binmode perlfunc/bless perlfunc/break perlfunc/caller perlfunc/catch perlfunc/chdir perlfunc/chmod perlfunc/chomp perlfunc/chop perlfunc/chown perlfunc/chr perlfunc/chroot perlfunc/class perlfunc/close perlfunc/closedir perlfunc/connect perlfunc/continue perlfunc/cos perlfunc/crypt perlfunc/dbmclose perlfunc/dbmopen perlfunc/defer perlfunc/defined perlfunc/delete perlfunc/die perlfunc/do perlfunc/dump perlfunc/each perlfunc/endgrent perlfunc/endhostent perlfunc/endnetent perlfunc/endprotoent perlfunc/endpwent perlfunc/endservent perlfunc/eof perlfunc/eval perlfunc/evalbytes perlfunc/exec perlfunc/exists perlfunc/exit perlfunc/exp perlfunc/fc perlfunc/fcntl perlfunc/field perlfunc/fileno perlfunc/finally perlfunc/flock perlfunc/fork perlfunc/format perlfunc/formline perlfunc/getc perlfunc/getgrent perlfunc/getgrgid perlfunc/getgrnam perlfunc/gethostbyaddr perlfunc/gethostbyname perlfunc/gethostent perlfunc/getlogin perlfunc/getnetbyaddr perlfunc/getnetbyname perlfunc/getnetent perlfunc/getpeername perlfunc/getpgrp perlfunc/getppid perlfunc/getpriority perlfunc/getprotobyname perlfunc/getprotobynumber perlfunc/getprotoent perlfunc/getpwent perlfunc/getpwnam perlfunc/getpwuid perlfunc/getservbyname perlfunc/getservbyport perlfunc/getservent perlfunc/getsockname perlfunc/getsockopt perlfunc/glob perlfunc/gmtime perlfunc/goto perlfunc/grep perlfunc/hex perlfunc/import perlfunc/index perlfunc/int perlfunc/ioctl perlfunc/isa perlfunc/join perlfunc/keys perlfunc/kill perlfunc/last perlfunc/lc perlfunc/lcfirst perlfunc/length perlfunc/link perlfunc/listen perlfunc/local perlfunc/localtime perlfunc/lock perlfunc/log perlfunc/lstat perlfunc/m perlfunc/map perlfunc/method perlfunc/mkdir perlfunc/msgctl perlfunc/msgget perlfunc/msgrcv perlfunc/msgsnd perlfunc/my perlfunc/next perlfunc/no perlfunc/oct perlfunc/open perlfunc/opendir perlfunc/ord perlfunc/our perlfunc/pack perlfunc/package perlfunc/pipe perlfunc/pop perlfunc/pos perlfunc/print perlfunc/printf perlfunc/prototype perlfunc/push perlfunc/q perlfunc/qq perlfunc/qr perlfunc/quotemeta perlfunc/qw perlfunc/qx perlfunc/rand perlfunc/read perlfunc/readdir perlfunc/readline perlfunc/readlink perlfunc/readpipe perlfunc/recv perlfunc/redo perlfunc/ref perlfunc/rename perlfunc/require perlfunc/reset perlfunc/return perlfunc/reverse perlfunc/rewinddir perlfunc/rindex perlfunc/rmdir perlfunc/s perlfunc/say perlfunc/scalar perlfunc/seek perlfunc/seekdir perlfunc/select perlfunc/semctl perlfunc/semget perlfunc/semop perlfunc/send perlfunc/setgrent perlfunc/sethostent perlfunc/setnetent perlfunc/setpgrp perlfunc/setpriority perlfunc/setprotoent perlfunc/setpwent perlfunc/setservent perlfunc/setsockopt perlfunc/shift perlfunc/shmctl perlfunc/shmget perlfunc/shmread perlfunc/shmwrite perlfunc/shutdown perlfunc/sin perlfunc/sleep perlfunc/socket perlfunc/socketpair perlfunc/sort perlfunc/splice perlfunc/split perlfunc/sprintf perlfunc/sqrt perlfunc/srand perlfunc/stat perlfunc/state perlfunc/study perlfunc/sub perlfunc/substr perlfunc/symlink perlfunc/syscall perlfunc/sysopen perlfunc/sysread perlfunc/sysseek perlfunc/system perlfunc/syswrite perlfunc/tell perlfunc/telldir perlfunc/tie perlfunc/tied perlfunc/time perlfunc/times perlfunc/tr perlfunc/truncate perlfunc/try perlfunc/uc perlfunc/ucfirst perlfunc/umask perlfunc/undef perlfunc/unlink perlfunc/unpack perlfunc/unshift perlfunc/untie perlfunc/use perlfunc/utime perlfunc/values perlfunc/vec perlfunc/wait perlfunc/waitpid perlfunc/wantarray perlfunc/warn perlfunc/write perlfunc/y ```