Environment variables are used to set user preferences. Individual Perl modules or programs are always free to define their own environment variables, and there is also a set of special environment variables that are used in the CGI environment (see Chapter 9, CGI Overview).
Perl uses the following environment variables:
Used in executing subprocesses and in finding the script if -S is used.
On Win32 systems, if you want to avoid typing the extension every time you execute a Perl script, you can set the PATHEXT environment variable so that it includes Perl scripts. For example:
This setting lets you type:> set PATHEXT=%PATHEXT%;.PLX
without including the file extension. Take care when setting PATHEXT permanently - it also includes executable file types like .com, .exe, .bat, and .cmd. If you inadvertently lose those extensions, you'll have difficulty invoking applications and script files.> myscript
A colon-separated list of directories in which to look for Perl library files before looking in the standard library and the current directory. If PERL5LIB is not defined, PERLLIB is used. When running taint checks, neither variable is used. The script should instead say:
use lib "/my/directory";
Command-line options (switches). Switches in
this variable are taken as if they were on every
Perl command line. Only the -[DIMUdmw
] switches
are allowed. When running taint checks, this variable is ignored.
A colon-separated list of directories in which to look for Perl library files before looking in the standard library and the current directory. If PERL5LIB is defined, PERLLIB is not used.
The command used to load the debugger code. The default is:
BEGIN { require 'perl5db.pl' }
On Win32 systems,
may be set to an alternative shell for Perl to
use internally to execute "backtick"
commands or the system
function.
Relevant only if your Perl executable was built with -DDEBUGGING_MSTATS. If set, causes memory statistics to be dumped after execution. If set to an integer greater than one, it also causes memory statistics to be dumped after compilation.
Relevant only if your Perl executable was built with -DDEBUGGING. Controls the behavior of global destruction of objects and other references.
Perl also has environment variables that control how Perl handles data specific to particular natural languages. See the perllocale manpage.