Commit | Line | Data |
a0d0e21e |
1 | =head1 NAME |
2 | |
3 | perlrun - how to execute the Perl interpreter |
4 | |
5 | =head1 SYNOPSIS |
6 | |
672fde27 |
7 | B<perl> S<[ B<-sTtuUWX> ]> |
e0ebc809 |
8 | S<[ B<-hv> ] [ B<-V>[:I<configvar>] ]> |
2cbb2ee1 |
9 | S<[ B<-cw> ] [ B<-d>[B<t>][:I<debugger>] ] [ B<-D>[I<number/list>] ]> |
f2095865 |
10 | S<[ B<-pna> ] [ B<-F>I<pattern> ] [ B<-l>[I<octal>] ] [ B<-0>[I<octal/hexadecimal>] ]> |
df451b2a |
11 | S<[ B<-I>I<dir> ] [ B<-m>[B<->]I<module> ] [ B<-M>[B<->]I<'module...'> ] [ B<-f> ]> |
c630fe62 |
12 | S<[ B<-C [I<number/list>] >]> |
e0ebc809 |
13 | S<[ B<-S> ]> |
14 | S<[ B<-x>[I<dir>] ]> |
15 | S<[ B<-i>[I<extension>] ]> |
eb1dd64e |
16 | S<[ [B<-e>|B<-E>] I<'command'> ] [ B<--> ] [ I<programfile> ] [ I<argument> ]...> |
a0d0e21e |
17 | |
18 | =head1 DESCRIPTION |
19 | |
19799a22 |
20 | The normal way to run a Perl program is by making it directly |
21 | executable, or else by passing the name of the source file as an |
22 | argument on the command line. (An interactive Perl environment |
23 | is also possible--see L<perldebug> for details on how to do that.) |
24 | Upon startup, Perl looks for your program in one of the following |
a0d0e21e |
25 | places: |
26 | |
27 | =over 4 |
28 | |
29 | =item 1. |
30 | |
bc9b29db |
31 | Specified line by line via B<-e> or B<-E> switches on the command line. |
a0d0e21e |
32 | |
33 | =item 2. |
34 | |
35 | Contained in the file specified by the first filename on the command line. |
a3cb178b |
36 | (Note that systems supporting the #! notation invoke interpreters this |
37 | way. See L<Location of Perl>.) |
a0d0e21e |
38 | |
39 | =item 3. |
40 | |
5f05dabc |
41 | Passed in implicitly via standard input. This works only if there are |
19799a22 |
42 | no filename arguments--to pass arguments to a STDIN-read program you |
43 | must explicitly specify a "-" for the program name. |
a0d0e21e |
44 | |
45 | =back |
46 | |
47 | With methods 2 and 3, Perl starts parsing the input file from the |
48 | beginning, unless you've specified a B<-x> switch, in which case it |
49 | scans for the first line starting with #! and containing the word |
19799a22 |
50 | "perl", and starts there instead. This is useful for running a program |
a0d0e21e |
51 | embedded in a larger message. (In this case you would indicate the end |
19799a22 |
52 | of the program using the C<__END__> token.) |
a0d0e21e |
53 | |
5f05dabc |
54 | The #! line is always examined for switches as the line is being |
55 | parsed. Thus, if you're on a machine that allows only one argument |
56 | with the #! line, or worse, doesn't even recognize the #! line, you |
57 | still can get consistent switch behavior regardless of how Perl was |
19799a22 |
58 | invoked, even if B<-x> was used to find the beginning of the program. |
59 | |
60 | Because historically some operating systems silently chopped off |
61 | kernel interpretation of the #! line after 32 characters, some |
62 | switches may be passed in on the command line, and some may not; |
63 | you could even get a "-" without its letter, if you're not careful. |
64 | You probably want to make sure that all your switches fall either |
65 | before or after that 32-character boundary. Most switches don't |
66 | actually care if they're processed redundantly, but getting a "-" |
67 | instead of a complete switch could cause Perl to try to execute |
68 | standard input instead of your program. And a partial B<-I> switch |
a0d0e21e |
69 | could also cause odd results. |
70 | |
19799a22 |
71 | Some switches do care if they are processed twice, for instance |
72 | combinations of B<-l> and B<-0>. Either put all the switches after |
73 | the 32-character boundary (if applicable), or replace the use of |
74 | B<-0>I<digits> by C<BEGIN{ $/ = "\0digits"; }>. |
fb73857a |
75 | |
a0d0e21e |
76 | Parsing of the #! switches starts wherever "perl" is mentioned in the line. |
77 | The sequences "-*" and "- " are specifically ignored so that you could, |
78 | if you were so inclined, say |
79 | |
428bacd7 |
80 | #!/bin/sh |
81 | #! -*-perl-*- |
82 | eval 'exec perl -x -wS $0 ${1+"$@"}' |
83 | if 0; |
a0d0e21e |
84 | |
44a4342c |
85 | to let Perl see the B<-p> switch. |
19799a22 |
86 | |
87 | A similar trick involves the B<env> program, if you have it. |
88 | |
89 | #!/usr/bin/env perl |
90 | |
91 | The examples above use a relative path to the perl interpreter, |
92 | getting whatever version is first in the user's path. If you want |
93 | a specific version of Perl, say, perl5.005_57, you should place |
94 | that directly in the #! line's path. |
a0d0e21e |
95 | |
96 | If the #! line does not contain the word "perl", the program named after |
97 | the #! is executed instead of the Perl interpreter. This is slightly |
98 | bizarre, but it helps people on machines that don't do #!, because they |
19799a22 |
99 | can tell a program that their SHELL is F</usr/bin/perl>, and Perl will then |
a0d0e21e |
100 | dispatch the program to the correct interpreter for them. |
101 | |
19799a22 |
102 | After locating your program, Perl compiles the entire program to an |
a0d0e21e |
103 | internal form. If there are any compilation errors, execution of the |
19799a22 |
104 | program is not attempted. (This is unlike the typical shell script, |
54310121 |
105 | which might run part-way through before finding a syntax error.) |
a0d0e21e |
106 | |
19799a22 |
107 | If the program is syntactically correct, it is executed. If the program |
a0d0e21e |
108 | runs off the end without hitting an exit() or die() operator, an implicit |
109 | C<exit(0)> is provided to indicate successful completion. |
110 | |
68dc0745 |
111 | =head2 #! and quoting on non-Unix systems |
d74e8afc |
112 | X<hashbang> X<#!> |
68dc0745 |
113 | |
114 | Unix's #! technique can be simulated on other systems: |
115 | |
116 | =over 4 |
117 | |
118 | =item OS/2 |
119 | |
120 | Put |
121 | |
122 | extproc perl -S -your_switches |
123 | |
19799a22 |
124 | as the first line in C<*.cmd> file (B<-S> due to a bug in cmd.exe's |
68dc0745 |
125 | `extproc' handling). |
126 | |
54310121 |
127 | =item MS-DOS |
68dc0745 |
128 | |
19799a22 |
129 | Create a batch file to run your program, and codify it in |
fd1adc71 |
130 | C<ALTERNATE_SHEBANG> (see the F<dosish.h> file in the source |
68dc0745 |
131 | distribution for more information). |
132 | |
133 | =item Win95/NT |
134 | |
6c6a61e2 |
135 | The Win95/NT installation, when using the ActiveState installer for Perl, |
c8db1d39 |
136 | will modify the Registry to associate the F<.pl> extension with the perl |
6c6a61e2 |
137 | interpreter. If you install Perl by other means (including building from |
138 | the sources), you may have to modify the Registry yourself. Note that |
139 | this means you can no longer tell the difference between an executable |
140 | Perl program and a Perl library file. |
68dc0745 |
141 | |
bd3fa61c |
142 | =item VMS |
143 | |
144 | Put |
145 | |
146 | $ perl -mysw 'f$env("procedure")' 'p1' 'p2' 'p3' 'p4' 'p5' 'p6' 'p7' 'p8' ! |
147 | $ exit++ + ++$status != 0 and $exit = $status = undef; |
148 | |
19799a22 |
149 | at the top of your program, where B<-mysw> are any command line switches you |
150 | want to pass to Perl. You can now invoke the program directly, by saying |
151 | C<perl program>, or as a DCL procedure, by saying C<@program> (or implicitly |
152 | via F<DCL$PATH> by just using the name of the program). |
bd3fa61c |
153 | |
154 | This incantation is a bit much to remember, but Perl will display it for |
155 | you if you say C<perl "-V:startperl">. |
156 | |
68dc0745 |
157 | =back |
158 | |
159 | Command-interpreters on non-Unix systems have rather different ideas |
160 | on quoting than Unix shells. You'll need to learn the special |
161 | characters in your command-interpreter (C<*>, C<\> and C<"> are |
162 | common) and how to protect whitespace and these characters to run |
19799a22 |
163 | one-liners (see B<-e> below). |
68dc0745 |
164 | |
165 | On some systems, you may have to change single-quotes to double ones, |
e6f03d26 |
166 | which you must I<not> do on Unix or Plan 9 systems. You might also |
68dc0745 |
167 | have to change a single % to a %%. |
168 | |
169 | For example: |
170 | |
171 | # Unix |
172 | perl -e 'print "Hello world\n"' |
173 | |
54310121 |
174 | # MS-DOS, etc. |
68dc0745 |
175 | perl -e "print \"Hello world\n\"" |
176 | |
68dc0745 |
177 | # VMS |
178 | perl -e "print ""Hello world\n""" |
179 | |
19799a22 |
180 | The problem is that none of this is reliable: it depends on the |
181 | command and it is entirely possible neither works. If B<4DOS> were |
182 | the command shell, this would probably work better: |
68dc0745 |
183 | |
184 | perl -e "print <Ctrl-x>"Hello world\n<Ctrl-x>"" |
185 | |
19799a22 |
186 | B<CMD.EXE> in Windows NT slipped a lot of standard Unix functionality in |
68dc0745 |
187 | when nobody was looking, but just try to find documentation for its |
188 | quoting rules. |
189 | |
68dc0745 |
190 | There is no general solution to all of this. It's just a mess. |
191 | |
a3cb178b |
192 | =head2 Location of Perl |
d74e8afc |
193 | X<perl, location of interpreter> |
a3cb178b |
194 | |
195 | It may seem obvious to say, but Perl is useful only when users can |
19799a22 |
196 | easily find it. When possible, it's good for both F</usr/bin/perl> |
197 | and F</usr/local/bin/perl> to be symlinks to the actual binary. If |
198 | that can't be done, system administrators are strongly encouraged |
199 | to put (symlinks to) perl and its accompanying utilities into a |
200 | directory typically found along a user's PATH, or in some other |
201 | obvious and convenient place. |
202 | |
203 | In this documentation, C<#!/usr/bin/perl> on the first line of the program |
204 | will stand in for whatever method works on your system. You are |
205 | advised to use a specific path if you care about a specific version. |
a3cb178b |
206 | |
19799a22 |
207 | #!/usr/local/bin/perl5.00554 |
a3cb178b |
208 | |
19799a22 |
209 | or if you just want to be running at least version, place a statement |
210 | like this at the top of your program: |
a0d0e21e |
211 | |
19799a22 |
212 | use 5.005_54; |
a0d0e21e |
213 | |
19799a22 |
214 | =head2 Command Switches |
d74e8afc |
215 | X<perl, command switches> X<command switches> |
19799a22 |
216 | |
217 | As with all standard commands, a single-character switch may be |
218 | clustered with the following switch, if any. |
219 | |
220 | #!/usr/bin/perl -spi.orig # same as -s -p -i.orig |
a0d0e21e |
221 | |
222 | Switches include: |
223 | |
224 | =over 5 |
225 | |
f2095865 |
226 | =item B<-0>[I<octal/hexadecimal>] |
d74e8afc |
227 | X<-0> X<$/> |
a0d0e21e |
228 | |
f2095865 |
229 | specifies the input record separator (C<$/>) as an octal or |
230 | hexadecimal number. If there are no digits, the null character is the |
231 | separator. Other switches may precede or follow the digits. For |
232 | example, if you have a version of B<find> which can print filenames |
233 | terminated by the null character, you can say this: |
a0d0e21e |
234 | |
19799a22 |
235 | find . -name '*.orig' -print0 | perl -n0e unlink |
a0d0e21e |
236 | |
237 | The special value 00 will cause Perl to slurp files in paragraph mode. |
5f05dabc |
238 | The value 0777 will cause Perl to slurp files whole because there is no |
f2095865 |
239 | legal byte with that value. |
240 | |
241 | If you want to specify any Unicode character, use the hexadecimal |
242 | format: C<-0xHHH...>, where the C<H> are valid hexadecimal digits. |
243 | (This means that you cannot use the C<-x> with a directory name that |
244 | consists of hexadecimal digits.) |
a0d0e21e |
245 | |
246 | =item B<-a> |
d74e8afc |
247 | X<-a> X<autosplit> |
a0d0e21e |
248 | |
249 | turns on autosplit mode when used with a B<-n> or B<-p>. An implicit |
250 | split command to the @F array is done as the first thing inside the |
251 | implicit while loop produced by the B<-n> or B<-p>. |
252 | |
253 | perl -ane 'print pop(@F), "\n";' |
254 | |
255 | is equivalent to |
256 | |
257 | while (<>) { |
258 | @F = split(' '); |
259 | print pop(@F), "\n"; |
260 | } |
261 | |
262 | An alternate delimiter may be specified using B<-F>. |
263 | |
a05d7ebb |
264 | =item B<-C [I<number/list>]> |
d74e8afc |
265 | X<-C> |
46487f74 |
266 | |
d91ed1da |
267 | The C<-C> flag controls some of the Perl Unicode features. |
a05d7ebb |
268 | |
269 | As of 5.8.1, the C<-C> can be followed either by a number or a list |
f3f8427d |
270 | of option letters. The letters, their numeric values, and effects |
8aa8f774 |
271 | are as follows; listing the letters is equal to summing the numbers. |
9f21530f |
272 | |
73e12209 |
273 | I 1 STDIN is assumed to be in UTF-8 |
274 | O 2 STDOUT will be in UTF-8 |
275 | E 4 STDERR will be in UTF-8 |
276 | S 7 I + O + E |
277 | i 8 UTF-8 is the default PerlIO layer for input streams |
278 | o 16 UTF-8 is the default PerlIO layer for output streams |
279 | D 24 i + o |
280 | A 32 the @ARGV elements are expected to be strings encoded |
281 | in UTF-8 |
282 | L 64 normally the "IOEioA" are unconditional, |
283 | the L makes them conditional on the locale environment |
284 | variables (the LC_ALL, LC_TYPE, and LANG, in the order |
285 | of decreasing precedence) -- if the variables indicate |
286 | UTF-8, then the selected "IOEioA" are in effect |
5a22a2bb |
287 | a 256 Set ${^UTF8CACHE} to -1, to run the UTF-8 caching code in |
288 | debugging mode. |
289 | |
290 | =for documenting_the_underdocumented |
291 | perl.h gives W/128 as PERL_UNICODE_WIDESYSCALLS "/* for Sarathy */" |
9f21530f |
292 | |
f23930d5 |
293 | =for todo |
294 | perltodo mentions Unicode in %ENV and filenames. I guess that these will be |
295 | options e and f (or F). |
296 | |
9f21530f |
297 | For example, C<-COE> and C<-C6> will both turn on UTF-8-ness on both |
298 | STDOUT and STDERR. Repeating letters is just redundant, not cumulative |
299 | nor toggling. |
a05d7ebb |
300 | |
44505768 |
301 | The C<io> options mean that any subsequent open() (or similar I/O |
302 | operations) will have the C<:utf8> PerlIO layer implicitly applied |
303 | to them, in other words, UTF-8 is expected from any input stream, |
304 | and UTF-8 is produced to any output stream. This is just the default, |
305 | with explicit layers in open() and with binmode() one can manipulate |
306 | streams as usual. |
307 | |
8aa8f774 |
308 | C<-C> on its own (not followed by any number or option list), or the |
47427c4e |
309 | empty string C<""> for the C<PERL_UNICODE> environment variable, has the |
310 | same effect as C<-CSDL>. In other words, the standard I/O handles and |
311 | the default C<open()> layer are UTF-8-fied B<but> only if the locale |
312 | environment variables indicate a UTF-8 locale. This behaviour follows |
313 | the I<implicit> (and problematic) UTF-8 behaviour of Perl 5.8.0. |
a05d7ebb |
314 | |
47427c4e |
315 | You can use C<-C0> (or C<"0"> for C<PERL_UNICODE>) to explicitly |
5b4f334e |
316 | disable all the above Unicode features. |
fde18df1 |
317 | |
8aa8f774 |
318 | The read-only magic variable C<${^UNICODE}> reflects the numeric value |
ab9e1bb7 |
319 | of this setting. This is variable is set during Perl startup and is |
320 | thereafter read-only. If you want runtime effects, use the three-arg |
2307c6d0 |
321 | open() (see L<perlfunc/open>), the two-arg binmode() (see L<perlfunc/binmode>), |
ab9e1bb7 |
322 | and the C<open> pragma (see L<open>). |
fde18df1 |
323 | |
324 | (In Perls earlier than 5.8.1 the C<-C> switch was a Win32-only switch |
325 | that enabled the use of Unicode-aware "wide system call" Win32 APIs. |
326 | This feature was practically unused, however, and the command line |
327 | switch was therefore "recycled".) |
46487f74 |
328 | |
4ba71d51 |
329 | B<Note:> Since perl 5.10.1, if the -C option is used on the #! line, it |
330 | must be specified on the command line as well, since the standard streams |
618078e9 |
331 | are already set up at this point in the execution of the perl interpreter. |
4ba71d51 |
332 | You can also use binmode() to set the encoding of an I/O stream. |
618078e9 |
333 | |
a0d0e21e |
334 | =item B<-c> |
d74e8afc |
335 | X<-c> |
a0d0e21e |
336 | |
19799a22 |
337 | causes Perl to check the syntax of the program and then exit without |
3c10abe3 |
338 | executing it. Actually, it I<will> execute C<BEGIN>, C<UNITCHECK>, |
339 | C<CHECK>, and C<use> blocks, because these are considered as occurring |
340 | outside the execution of your program. C<INIT> and C<END> blocks, |
341 | however, will be skipped. |
a0d0e21e |
342 | |
343 | =item B<-d> |
d74e8afc |
344 | X<-d> X<-dt> |
a0d0e21e |
345 | |
2cbb2ee1 |
346 | =item B<-dt> |
347 | |
19799a22 |
348 | runs the program under the Perl debugger. See L<perldebug>. |
2cbb2ee1 |
349 | If B<t> is specified, it indicates to the debugger that threads |
350 | will be used in the code being debugged. |
a0d0e21e |
351 | |
70c94a19 |
352 | =item B<-d:>I<foo[=bar,baz]> |
d74e8afc |
353 | X<-d> X<-dt> |
3c81428c |
354 | |
2cbb2ee1 |
355 | =item B<-dt:>I<foo[=bar,baz]> |
356 | |
19799a22 |
357 | runs the program under the control of a debugging, profiling, or |
358 | tracing module installed as Devel::foo. E.g., B<-d:DProf> executes |
70c94a19 |
359 | the program using the Devel::DProf profiler. As with the B<-M> |
360 | flag, options may be passed to the Devel::foo package where they |
361 | will be received and interpreted by the Devel::foo::import routine. |
362 | The comma-separated list of options must follow a C<=> character. |
2cbb2ee1 |
363 | If B<t> is specified, it indicates to the debugger that threads |
364 | will be used in the code being debugged. |
70c94a19 |
365 | See L<perldebug>. |
3c81428c |
366 | |
db2ba183 |
367 | =item B<-D>I<letters> |
d74e8afc |
368 | X<-D> X<DEBUGGING> X<-DDEBUGGING> |
a0d0e21e |
369 | |
db2ba183 |
370 | =item B<-D>I<number> |
a0d0e21e |
371 | |
19799a22 |
372 | sets debugging flags. To watch how it executes your program, use |
db2ba183 |
373 | B<-Dtls>. (This works only if debugging is compiled into your |
374 | Perl.) Another nice value is B<-Dx>, which lists your compiled |
4197b13f |
375 | syntax tree. And B<-Dr> displays compiled regular expressions; |
44a4342c |
376 | the format of the output is explained in L<perldebguts>. |
4197b13f |
377 | |
378 | As an alternative, specify a number instead of list of letters (e.g., |
379 | B<-D14> is equivalent to B<-Dtls>): |
a0d0e21e |
380 | |
9388183f |
381 | 1 p Tokenizing and parsing (with v, displays parse stack) |
3679267a |
382 | 2 s Stack snapshots (with v, displays all stacks) |
db2ba183 |
383 | 4 l Context (loop) stack processing |
384 | 8 t Trace execution |
385 | 16 o Method and overloading resolution |
386 | 32 c String/numeric conversions |
4c84d7f2 |
387 | 64 P Print profiling info, source file input state |
d7a2c63c |
388 | 128 m Memory and SV allocation |
db2ba183 |
389 | 256 f Format processing |
390 | 512 r Regular expression parsing and execution |
391 | 1024 x Syntax tree dump |
392 | 2048 u Tainting checks |
7949c6f5 |
393 | 4096 U Unofficial, User hacking (reserved for private, unreleased use) |
db2ba183 |
394 | 8192 H Hash dump -- usurps values() |
395 | 16384 X Scratchpad allocation |
396 | 32768 D Cleaning up |
607df283 |
397 | 131072 T Tokenising |
04932ac8 |
398 | 262144 R Include reference counts of dumped variables (eg when using -Ds) |
1045810a |
399 | 524288 J Do not s,t,P-debug (Jump over) opcodes within package DB |
d6721266 |
400 | 1048576 v Verbose: use in conjunction with other flags |
46187eeb |
401 | 2097152 C Copy On Write |
ecae49c0 |
402 | 4194304 A Consistency checks on internal structures |
3679267a |
403 | 8388608 q quiet - currently only suppresses the "EXECUTING" message |
d7c0d282 |
404 | 16777216 M trace smart match resolution |
cc8773c0 |
405 | 33554432 B dump suBroutine definitions, including special Blocks like BEGIN |
a0d0e21e |
406 | |
19799a22 |
407 | All these flags require B<-DDEBUGGING> when you compile the Perl |
1045810a |
408 | executable (but see L<Devel::Peek>, L<re> which may change this). |
44a4342c |
409 | See the F<INSTALL> file in the Perl source distribution |
19799a22 |
410 | for how to do this. This flag is automatically set if you include B<-g> |
8c52afec |
411 | option when C<Configure> asks you about optimizer/debugger flags. |
412 | |
19799a22 |
413 | If you're just trying to get a print out of each line of Perl code |
414 | as it executes, the way that C<sh -x> provides for shell scripts, |
44a4342c |
415 | you can't use Perl's B<-D> switch. Instead do this |
19799a22 |
416 | |
c406981e |
417 | # If you have "env" utility |
fdac53cd |
418 | env PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program |
c406981e |
419 | |
19799a22 |
420 | # Bourne shell syntax |
421 | $ PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program |
422 | |
423 | # csh syntax |
424 | % (setenv PERLDB_OPTS "NonStop=1 AutoTrace=1 frame=2"; perl -dS program) |
425 | |
426 | See L<perldebug> for details and variations. |
427 | |
a0d0e21e |
428 | =item B<-e> I<commandline> |
d74e8afc |
429 | X<-e> |
a0d0e21e |
430 | |
19799a22 |
431 | may be used to enter one line of program. If B<-e> is given, Perl |
432 | will not look for a filename in the argument list. Multiple B<-e> |
433 | commands may be given to build up a multi-line script. Make sure |
434 | to use semicolons where you would in a normal program. |
a0d0e21e |
435 | |
bc9b29db |
436 | =item B<-E> I<commandline> |
437 | X<-E> |
438 | |
439 | behaves just like B<-e>, except that it implicitly enables all |
440 | optional features (in the main compilation unit). See L<feature>. |
441 | |
20ef40cf |
442 | =item B<-f> |
d74e8afc |
443 | X<-f> |
20ef40cf |
444 | |
4a42f219 |
445 | Disable executing F<$Config{sitelib}/sitecustomize.pl> at startup. |
20ef40cf |
446 | |
447 | Perl can be built so that it by default will try to execute |
e846cbe5 |
448 | F<$Config{sitelib}/sitecustomize.pl> at startup (in a BEGIN block). |
449 | This is a hook that allows the sysadmin to customize how perl behaves. |
450 | It can for instance be used to add entries to the @INC array to make perl |
451 | find modules in non-standard locations. |
20ef40cf |
452 | |
e0ebc809 |
453 | =item B<-F>I<pattern> |
d74e8afc |
454 | X<-F> |
a0d0e21e |
455 | |
e0ebc809 |
456 | specifies the pattern to split on if B<-a> is also in effect. The |
5f05dabc |
457 | pattern may be surrounded by C<//>, C<"">, or C<''>, otherwise it will be |
d52fe7da |
458 | put in single quotes. You can't use literal whitespace in the pattern. |
a0d0e21e |
459 | |
e0ebc809 |
460 | =item B<-h> |
d74e8afc |
461 | X<-h> |
e0ebc809 |
462 | |
463 | prints a summary of the options. |
464 | |
465 | =item B<-i>[I<extension>] |
d74e8afc |
466 | X<-i> X<in-place> |
a0d0e21e |
467 | |
2d259d92 |
468 | specifies that files processed by the C<E<lt>E<gt>> construct are to be |
469 | edited in-place. It does this by renaming the input file, opening the |
470 | output file by the original name, and selecting that output file as the |
471 | default for print() statements. The extension, if supplied, is used to |
472 | modify the name of the old file to make a backup copy, following these |
473 | rules: |
474 | |
475 | If no extension is supplied, no backup is made and the current file is |
476 | overwritten. |
477 | |
19799a22 |
478 | If the extension doesn't contain a C<*>, then it is appended to the |
479 | end of the current filename as a suffix. If the extension does |
480 | contain one or more C<*> characters, then each C<*> is replaced |
481 | with the current filename. In Perl terms, you could think of this |
482 | as: |
2d259d92 |
483 | |
66606d78 |
484 | ($backup = $extension) =~ s/\*/$file_name/g; |
2d259d92 |
485 | |
486 | This allows you to add a prefix to the backup file, instead of (or in |
487 | addition to) a suffix: |
488 | |
ddffceb7 |
489 | $ perl -pi'orig_*' -e 's/bar/baz/' fileA # backup to 'orig_fileA' |
2d259d92 |
490 | |
491 | Or even to place backup copies of the original files into another |
492 | directory (provided the directory already exists): |
493 | |
ddffceb7 |
494 | $ perl -pi'old/*.orig' -e 's/bar/baz/' fileA # backup to 'old/fileA.orig' |
2d259d92 |
495 | |
66606d78 |
496 | These sets of one-liners are equivalent: |
497 | |
498 | $ perl -pi -e 's/bar/baz/' fileA # overwrite current file |
ddffceb7 |
499 | $ perl -pi'*' -e 's/bar/baz/' fileA # overwrite current file |
66606d78 |
500 | |
ddffceb7 |
501 | $ perl -pi'.orig' -e 's/bar/baz/' fileA # backup to 'fileA.orig' |
502 | $ perl -pi'*.orig' -e 's/bar/baz/' fileA # backup to 'fileA.orig' |
66606d78 |
503 | |
2d259d92 |
504 | From the shell, saying |
a0d0e21e |
505 | |
19799a22 |
506 | $ perl -p -i.orig -e "s/foo/bar/; ... " |
a0d0e21e |
507 | |
19799a22 |
508 | is the same as using the program: |
a0d0e21e |
509 | |
19799a22 |
510 | #!/usr/bin/perl -pi.orig |
a0d0e21e |
511 | s/foo/bar/; |
512 | |
513 | which is equivalent to |
514 | |
515 | #!/usr/bin/perl |
19799a22 |
516 | $extension = '.orig'; |
517 | LINE: while (<>) { |
a0d0e21e |
518 | if ($ARGV ne $oldargv) { |
66606d78 |
519 | if ($extension !~ /\*/) { |
520 | $backup = $ARGV . $extension; |
521 | } |
522 | else { |
523 | ($backup = $extension) =~ s/\*/$ARGV/g; |
524 | } |
525 | rename($ARGV, $backup); |
a0d0e21e |
526 | open(ARGVOUT, ">$ARGV"); |
527 | select(ARGVOUT); |
528 | $oldargv = $ARGV; |
529 | } |
530 | s/foo/bar/; |
531 | } |
532 | continue { |
533 | print; # this prints to original filename |
534 | } |
535 | select(STDOUT); |
536 | |
537 | except that the B<-i> form doesn't need to compare $ARGV to $oldargv to |
538 | know when the filename has changed. It does, however, use ARGVOUT for |
66606d78 |
539 | the selected filehandle. Note that STDOUT is restored as the default |
540 | output filehandle after the loop. |
541 | |
542 | As shown above, Perl creates the backup file whether or not any output |
543 | is actually changed. So this is just a fancy way to copy files: |
544 | |
cd2d1bac |
545 | $ perl -p -i'/some/file/path/*' -e 1 file1 file2 file3... |
19799a22 |
546 | or |
cd2d1bac |
547 | $ perl -p -i'.orig' -e 1 file1 file2 file3... |
66606d78 |
548 | |
549 | You can use C<eof> without parentheses to locate the end of each input |
550 | file, in case you want to append to each file, or reset line numbering |
551 | (see example in L<perlfunc/eof>). |
552 | |
553 | If, for a given file, Perl is unable to create the backup file as |
554 | specified in the extension then it will skip that file and continue on |
555 | with the next one (if it exists). |
556 | |
19799a22 |
557 | For a discussion of issues surrounding file permissions and B<-i>, |
cea6626f |
558 | see L<perlfaq5/Why does Perl let me delete read-only files? Why does -i clobber protected files? Isn't this a bug in Perl?>. |
66606d78 |
559 | |
560 | You cannot use B<-i> to create directories or to strip extensions from |
561 | files. |
a0d0e21e |
562 | |
19799a22 |
563 | Perl does not expand C<~> in filenames, which is good, since some |
564 | folks use it for their backup files: |
a0d0e21e |
565 | |
19799a22 |
566 | $ perl -pi~ -e 's/foo/bar/' file1 file2 file3... |
567 | |
a66b22ca |
568 | Note that because B<-i> renames or deletes the original file before |
e1020413 |
569 | creating a new file of the same name, Unix-style soft and hard links will |
0cb0633f |
570 | not be preserved. |
a66b22ca |
571 | |
19799a22 |
572 | Finally, the B<-i> switch does not impede execution when no |
a2008d6d |
573 | files are given on the command line. In this case, no backup is made |
574 | (the original file cannot, of course, be determined) and processing |
575 | proceeds from STDIN to STDOUT as might be expected. |
576 | |
a0d0e21e |
577 | =item B<-I>I<directory> |
d74e8afc |
578 | X<-I> X<@INC> |
a0d0e21e |
579 | |
e0ebc809 |
580 | Directories specified by B<-I> are prepended to the search path for |
4c84d7f2 |
581 | modules (C<@INC>). |
a0d0e21e |
582 | |
e0ebc809 |
583 | =item B<-l>[I<octnum>] |
d74e8afc |
584 | X<-l> X<$/> X<$\> |
a0d0e21e |
585 | |
19799a22 |
586 | enables automatic line-ending processing. It has two separate |
587 | effects. First, it automatically chomps C<$/> (the input record |
588 | separator) when used with B<-n> or B<-p>. Second, it assigns C<$\> |
589 | (the output record separator) to have the value of I<octnum> so |
590 | that any print statements will have that separator added back on. |
591 | If I<octnum> is omitted, sets C<$\> to the current value of |
592 | C<$/>. For instance, to trim lines to 80 columns: |
a0d0e21e |
593 | |
594 | perl -lpe 'substr($_, 80) = ""' |
595 | |
596 | Note that the assignment C<$\ = $/> is done when the switch is processed, |
597 | so the input record separator can be different than the output record |
598 | separator if the B<-l> switch is followed by a B<-0> switch: |
599 | |
600 | gnufind / -print0 | perl -ln0e 'print "found $_" if -p' |
601 | |
1fef88e7 |
602 | This sets C<$\> to newline and then sets C<$/> to the null character. |
a0d0e21e |
603 | |
e0ebc809 |
604 | =item B<-m>[B<->]I<module> |
d74e8afc |
605 | X<-m> X<-M> |
e0ebc809 |
606 | |
607 | =item B<-M>[B<->]I<module> |
c07a80fd |
608 | |
e0ebc809 |
609 | =item B<-M>[B<->]I<'module ...'> |
610 | |
611 | =item B<-[mM]>[B<->]I<module=arg[,arg]...> |
3c81428c |
612 | |
19799a22 |
613 | B<-m>I<module> executes C<use> I<module> C<();> before executing your |
614 | program. |
3c81428c |
615 | |
19799a22 |
616 | B<-M>I<module> executes C<use> I<module> C<;> before executing your |
617 | program. You can use quotes to add extra code after the module name, |
618 | e.g., C<'-Mmodule qw(foo bar)'>. |
3c81428c |
619 | |
19799a22 |
620 | If the first character after the B<-M> or B<-m> is a dash (C<->) |
a5f75d66 |
621 | then the 'use' is replaced with 'no'. |
622 | |
54310121 |
623 | A little builtin syntactic sugar means you can also say |
19799a22 |
624 | B<-mmodule=foo,bar> or B<-Mmodule=foo,bar> as a shortcut for |
625 | C<'-Mmodule qw(foo bar)'>. This avoids the need to use quotes when |
626 | importing symbols. The actual code generated by B<-Mmodule=foo,bar> is |
e0ebc809 |
627 | C<use module split(/,/,q{foo,bar})>. Note that the C<=> form |
19799a22 |
628 | removes the distinction between B<-m> and B<-M>. |
3c81428c |
629 | |
642d0c2f |
630 | A consequence of this is that B<-MFoo=number> never does a version check |
631 | (unless C<Foo::import()> itself is set up to do a version check, which |
632 | could happen for example if Foo inherits from Exporter.) |
633 | |
a0d0e21e |
634 | =item B<-n> |
d74e8afc |
635 | X<-n> |
a0d0e21e |
636 | |
19799a22 |
637 | causes Perl to assume the following loop around your program, which |
a0d0e21e |
638 | makes it iterate over filename arguments somewhat like B<sed -n> or |
639 | B<awk>: |
640 | |
19799a22 |
641 | LINE: |
a0d0e21e |
642 | while (<>) { |
19799a22 |
643 | ... # your program goes here |
a0d0e21e |
644 | } |
645 | |
646 | Note that the lines are not printed by default. See B<-p> to have |
08e9d68e |
647 | lines printed. If a file named by an argument cannot be opened for |
19799a22 |
648 | some reason, Perl warns you about it and moves on to the next file. |
08e9d68e |
649 | |
48ab5743 |
650 | Also note that C<< <> >> passes command line arguments to |
651 | L<perlfunc/open>, which doesn't necessarily interpret them as file names. |
652 | See L<perlop> for possible security implications. |
653 | |
fa11829f |
654 | Here is an efficient way to delete all files that haven't been modified for |
9976c5c7 |
655 | at least a week: |
a0d0e21e |
656 | |
19799a22 |
657 | find . -mtime +7 -print | perl -nle unlink |
a0d0e21e |
658 | |
19799a22 |
659 | This is faster than using the B<-exec> switch of B<find> because you don't |
660 | have to start a process on every filename found. It does suffer from |
661 | the bug of mishandling newlines in pathnames, which you can fix if |
44a4342c |
662 | you follow the example under B<-0>. |
a0d0e21e |
663 | |
664 | C<BEGIN> and C<END> blocks may be used to capture control before or after |
19799a22 |
665 | the implicit program loop, just as in B<awk>. |
a0d0e21e |
666 | |
667 | =item B<-p> |
d74e8afc |
668 | X<-p> |
a0d0e21e |
669 | |
19799a22 |
670 | causes Perl to assume the following loop around your program, which |
a0d0e21e |
671 | makes it iterate over filename arguments somewhat like B<sed>: |
672 | |
673 | |
19799a22 |
674 | LINE: |
a0d0e21e |
675 | while (<>) { |
19799a22 |
676 | ... # your program goes here |
a0d0e21e |
677 | } continue { |
08e9d68e |
678 | print or die "-p destination: $!\n"; |
a0d0e21e |
679 | } |
680 | |
08e9d68e |
681 | If a file named by an argument cannot be opened for some reason, Perl |
682 | warns you about it, and moves on to the next file. Note that the |
c2611fb3 |
683 | lines are printed automatically. An error occurring during printing is |
08e9d68e |
684 | treated as fatal. To suppress printing use the B<-n> switch. A B<-p> |
685 | overrides a B<-n> switch. |
a0d0e21e |
686 | |
687 | C<BEGIN> and C<END> blocks may be used to capture control before or after |
19799a22 |
688 | the implicit loop, just as in B<awk>. |
a0d0e21e |
689 | |
a0d0e21e |
690 | =item B<-s> |
d74e8afc |
691 | X<-s> |
a0d0e21e |
692 | |
19799a22 |
693 | enables rudimentary switch parsing for switches on the command |
694 | line after the program name but before any filename arguments (or before |
74ac850a |
695 | an argument of B<-->). Any switch found there is removed from @ARGV and sets the |
19799a22 |
696 | corresponding variable in the Perl program. The following program |
3c0facb2 |
697 | prints "1" if the program is invoked with a B<-xyz> switch, and "abc" |
698 | if it is invoked with B<-xyz=abc>. |
a0d0e21e |
699 | |
700 | #!/usr/bin/perl -s |
3c0facb2 |
701 | if ($xyz) { print "$xyz\n" } |
a0d0e21e |
702 | |
74ac850a |
703 | Do note that a switch like B<--help> creates the variable ${-help}, which is not compliant |
50b5b186 |
704 | with C<strict refs>. Also, when using this option on a script with |
705 | warnings enabled you may get a lot of spurious "used only once" warnings. |
3bbcc830 |
706 | |
a0d0e21e |
707 | =item B<-S> |
d74e8afc |
708 | X<-S> |
a0d0e21e |
709 | |
710 | makes Perl use the PATH environment variable to search for the |
19799a22 |
711 | program (unless the name of the program contains directory separators). |
712 | |
2a92aaa0 |
713 | On some platforms, this also makes Perl append suffixes to the |
714 | filename while searching for it. For example, on Win32 platforms, |
715 | the ".bat" and ".cmd" suffixes are appended if a lookup for the |
716 | original name fails, and if the name does not already end in one |
717 | of those suffixes. If your Perl was compiled with DEBUGGING turned |
718 | on, using the -Dp switch to Perl shows how the search progresses. |
719 | |
fa3aa65a |
720 | Typically this is used to emulate #! startup on platforms that don't |
721 | support #!. Its also convenient when debugging a script that uses #!, |
722 | and is thus normally found by the shell's $PATH search mechanism. |
723 | |
724 | This example works on many platforms that have a shell compatible with |
725 | Bourne shell: |
a0d0e21e |
726 | |
727 | #!/usr/bin/perl |
a3cb178b |
728 | eval 'exec /usr/bin/perl -wS $0 ${1+"$@"}' |
a0d0e21e |
729 | if $running_under_some_shell; |
730 | |
19799a22 |
731 | The system ignores the first line and feeds the program to F</bin/sh>, |
732 | which proceeds to try to execute the Perl program as a shell script. |
a0d0e21e |
733 | The shell executes the second line as a normal shell command, and thus |
734 | starts up the Perl interpreter. On some systems $0 doesn't always |
735 | contain the full pathname, so the B<-S> tells Perl to search for the |
19799a22 |
736 | program if necessary. After Perl locates the program, it parses the |
a0d0e21e |
737 | lines and ignores them because the variable $running_under_some_shell |
19799a22 |
738 | is never true. If the program will be interpreted by csh, you will need |
a3cb178b |
739 | to replace C<${1+"$@"}> with C<$*>, even though that doesn't understand |
740 | embedded spaces (and such) in the argument list. To start up sh rather |
a0d0e21e |
741 | than csh, some systems may have to replace the #! line with a line |
742 | containing just a colon, which will be politely ignored by Perl. Other |
743 | systems can't control that, and need a totally devious construct that |
19799a22 |
744 | will work under any of B<csh>, B<sh>, or Perl, such as the following: |
a0d0e21e |
745 | |
19799a22 |
746 | eval '(exit $?0)' && eval 'exec perl -wS $0 ${1+"$@"}' |
a3cb178b |
747 | & eval 'exec /usr/bin/perl -wS $0 $argv:q' |
5f05dabc |
748 | if $running_under_some_shell; |
a0d0e21e |
749 | |
19799a22 |
750 | If the filename supplied contains directory separators (i.e., is an |
751 | absolute or relative pathname), and if that file is not found, |
752 | platforms that append file extensions will do so and try to look |
753 | for the file with those extensions added, one by one. |
754 | |
755 | On DOS-like platforms, if the program does not contain directory |
756 | separators, it will first be searched for in the current directory |
757 | before being searched for on the PATH. On Unix platforms, the |
758 | program will be searched for strictly on the PATH. |
759 | |
6537fe72 |
760 | =item B<-t> |
d74e8afc |
761 | X<-t> |
6537fe72 |
762 | |
763 | Like B<-T>, but taint checks will issue warnings rather than fatal |
317ea90d |
764 | errors. These warnings can be controlled normally with C<no warnings |
765 | qw(taint)>. |
1dbad523 |
766 | |
767 | B<NOTE: this is not a substitute for -T.> This is meant only to be |
768 | used as a temporary development aid while securing legacy code: |
769 | for real production code and for new secure code written from scratch |
770 | always use the real B<-T>. |
6537fe72 |
771 | |
a0d0e21e |
772 | =item B<-T> |
d74e8afc |
773 | X<-T> |
a0d0e21e |
774 | |
a3cb178b |
775 | forces "taint" checks to be turned on so you can test them. Ordinarily |
19799a22 |
776 | these checks are done only when running setuid or setgid. It's a |
777 | good idea to turn them on explicitly for programs that run on behalf |
778 | of someone else whom you might not necessarily trust, such as CGI |
779 | programs or any internet servers you might write in Perl. See |
780 | L<perlsec> for details. For security reasons, this option must be |
781 | seen by Perl quite early; usually this means it must appear early |
782 | on the command line or in the #! line for systems which support |
783 | that construct. |
a0d0e21e |
784 | |
785 | =item B<-u> |
d74e8afc |
786 | X<-u> |
a0d0e21e |
787 | |
19799a22 |
788 | This obsolete switch causes Perl to dump core after compiling your |
789 | program. You can then in theory take this core dump and turn it |
790 | into an executable file by using the B<undump> program (not supplied). |
791 | This speeds startup at the expense of some disk space (which you |
792 | can minimize by stripping the executable). (Still, a "hello world" |
793 | executable comes out to about 200K on my machine.) If you want to |
794 | execute a portion of your program before dumping, use the dump() |
795 | operator instead. Note: availability of B<undump> is platform |
796 | specific and may not be available for a specific port of Perl. |
797 | |
a0d0e21e |
798 | =item B<-U> |
d74e8afc |
799 | X<-U> |
a0d0e21e |
800 | |
801 | allows Perl to do unsafe operations. Currently the only "unsafe" |
c69adce3 |
802 | operations are attempting to unlink directories while running as |
803 | superuser, and running setuid programs with fatal taint checks turned |
804 | into warnings. Note that the B<-w> switch (or the C<$^W> variable) |
805 | must be used along with this option to actually I<generate> the |
806 | taint-check warnings. |
a0d0e21e |
807 | |
808 | =item B<-v> |
d74e8afc |
809 | X<-v> |
a0d0e21e |
810 | |
19799a22 |
811 | prints the version and patchlevel of your perl executable. |
a0d0e21e |
812 | |
3c81428c |
813 | =item B<-V> |
d74e8afc |
814 | X<-V> |
3c81428c |
815 | |
816 | prints summary of the major perl configuration values and the current |
19799a22 |
817 | values of @INC. |
3c81428c |
818 | |
307dc113 |
819 | =item B<-V:>I<configvar> |
3c81428c |
820 | |
4a305f6a |
821 | Prints to STDOUT the value of the named configuration variable(s), |
307dc113 |
822 | with multiples when your configvar argument looks like a regex (has |
823 | non-letters). For example: |
3c81428c |
824 | |
307dc113 |
825 | $ perl -V:libc |
826 | libc='/lib/libc-2.2.4.so'; |
4a305f6a |
827 | $ perl -V:lib. |
828 | libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc'; |
829 | libc='/lib/libc-2.2.4.so'; |
830 | $ perl -V:lib.* |
831 | libpth='/usr/local/lib /lib /usr/lib'; |
832 | libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc'; |
833 | lib_ext='.a'; |
834 | libc='/lib/libc-2.2.4.so'; |
835 | libperl='libperl.a'; |
836 | .... |
837 | |
838 | Additionally, extra colons can be used to control formatting. A |
839 | trailing colon suppresses the linefeed and terminator ';', allowing |
840 | you to embed queries into shell commands. (mnemonic: PATH separator |
841 | ':'.) |
842 | |
843 | $ echo "compression-vars: " `perl -V:z.*: ` " are here !" |
844 | compression-vars: zcat='' zip='zip' are here ! |
845 | |
846 | A leading colon removes the 'name=' part of the response, this allows |
307dc113 |
847 | you to map to the name you need. (mnemonic: empty label) |
4a305f6a |
848 | |
849 | $ echo "goodvfork="`./perl -Ilib -V::usevfork` |
850 | goodvfork=false; |
851 | |
852 | Leading and trailing colons can be used together if you need |
853 | positional parameter values without the names. Note that in the case |
854 | below, the PERL_API params are returned in alphabetical order. |
855 | |
856 | $ echo building_on `perl -V::osname: -V::PERL_API_.*:` now |
857 | building_on 'linux' '5' '1' '9' now |
a0d0e21e |
858 | |
19799a22 |
859 | =item B<-w> |
d74e8afc |
860 | X<-w> |
774d564b |
861 | |
19799a22 |
862 | prints warnings about dubious constructs, such as variable names |
863 | that are mentioned only once and scalar variables that are used |
864 | before being set, redefined subroutines, references to undefined |
865 | filehandles or filehandles opened read-only that you are attempting |
a4d9c8a6 |
866 | to write on, values used as a number that don't look like numbers, |
19799a22 |
867 | using an array as though it were a scalar, if your subroutines |
868 | recurse more than 100 deep, and innumerable other things. |
869 | |
b40da996 |
870 | This switch really just enables the internal C<$^W> variable. You |
19799a22 |
871 | can disable or promote into fatal errors specific warnings using |
872 | C<__WARN__> hooks, as described in L<perlvar> and L<perlfunc/warn>. |
873 | See also L<perldiag> and L<perltrap>. A new, fine-grained warning |
874 | facility is also available if you want to manipulate entire classes |
9f1b1f2d |
875 | of warnings; see L<warnings> or L<perllexwarn>. |
a0d0e21e |
876 | |
0453d815 |
877 | =item B<-W> |
d74e8afc |
878 | X<-W> |
0453d815 |
879 | |
3c0facb2 |
880 | Enables all warnings regardless of C<no warnings> or C<$^W>. |
0453d815 |
881 | See L<perllexwarn>. |
882 | |
883 | =item B<-X> |
d74e8afc |
884 | X<-X> |
0453d815 |
885 | |
3c0facb2 |
886 | Disables all warnings regardless of C<use warnings> or C<$^W>. |
0453d815 |
887 | See L<perllexwarn>. |
888 | |
136e4fd6 |
889 | =item B<-x> |
d74e8afc |
890 | X<-x> |
136e4fd6 |
891 | |
d3bf4b0e |
892 | =item B<-x>I<directory> |
a0d0e21e |
893 | |
19799a22 |
894 | tells Perl that the program is embedded in a larger chunk of unrelated |
895 | ASCII text, such as in a mail message. Leading garbage will be |
896 | discarded until the first line that starts with #! and contains the |
897 | string "perl". Any meaningful switches on that line will be applied. |
3d6c2ba7 |
898 | |
899 | All references to line numbers by the program (warnings, errors, ...) |
900 | will treat the #! line as the first line. |
901 | Thus a warning on the 2nd line of the program (which is on the 100th |
902 | line in the file) will be reported as line 2, and not as line 100. |
903 | This can be overridden by using the #line directive. |
904 | (See L<perlsyn/"Plain-Old-Comments-(Not!)">) |
905 | |
19799a22 |
906 | If a directory name is specified, Perl will switch to that directory |
907 | before running the program. The B<-x> switch controls only the |
908 | disposal of leading garbage. The program must be terminated with |
909 | C<__END__> if there is trailing garbage to be ignored (the program |
910 | can process any or all of the trailing garbage via the DATA filehandle |
911 | if desired). |
a0d0e21e |
912 | |
353c6505 |
913 | The directory, if specified, must appear immediately following the B<-x> |
d3bf4b0e |
914 | with no intervening whitespace. |
915 | |
1e422769 |
916 | =back |
917 | |
918 | =head1 ENVIRONMENT |
d74e8afc |
919 | X<perl, environment variables> |
1e422769 |
920 | |
921 | =over 12 |
922 | |
923 | =item HOME |
d74e8afc |
924 | X<HOME> |
1e422769 |
925 | |
926 | Used if chdir has no argument. |
927 | |
928 | =item LOGDIR |
d74e8afc |
929 | X<LOGDIR> |
1e422769 |
930 | |
931 | Used if chdir has no argument and HOME is not set. |
932 | |
933 | =item PATH |
d74e8afc |
934 | X<PATH> |
1e422769 |
935 | |
19799a22 |
936 | Used in executing subprocesses, and in finding the program if B<-S> is |
1e422769 |
937 | used. |
938 | |
939 | =item PERL5LIB |
d74e8afc |
940 | X<PERL5LIB> |
1e422769 |
941 | |
48b971ca |
942 | A list of directories in which to look for Perl library |
1e422769 |
943 | files before looking in the standard library and the current |
951ba7fe |
944 | directory. Any architecture-specific directories under the specified |
2a89fadc |
945 | locations are automatically included if they exist (this lookup |
946 | being done at interpreter startup time.) |
69681433 |
947 | |
948 | If PERL5LIB is not defined, PERLLIB is used. Directories are separated |
e1020413 |
949 | (like in PATH) by a colon on Unixish platforms and by a semicolon on |
69681433 |
950 | Windows (the proper path separator being given by the command C<perl |
951 | -V:path_sep>). |
951ba7fe |
952 | |
953 | When running taint checks (either because the program was running setuid |
29469fa6 |
954 | or setgid, or the B<-T> or B<-t> switch was specified), neither variable |
955 | is used. The program should instead say: |
1e422769 |
956 | |
957 | use lib "/my/directory"; |
958 | |
54310121 |
959 | =item PERL5OPT |
d74e8afc |
960 | X<PERL5OPT> |
54310121 |
961 | |
962 | Command-line options (switches). Switches in this variable are taken |
2b622f1a |
963 | as if they were on every Perl command line. Only the B<-[CDIMUdmtwW]> |
19799a22 |
964 | switches are allowed. When running taint checks (because the program |
54310121 |
965 | was running setuid or setgid, or the B<-T> switch was used), this |
74288ac8 |
966 | variable is ignored. If PERL5OPT begins with B<-T>, tainting will be |
967 | enabled, and any subsequent options ignored. |
54310121 |
968 | |
16537909 |
969 | =item PERLIO |
d74e8afc |
970 | X<PERLIO> |
16537909 |
971 | |
44a4342c |
972 | A space (or colon) separated list of PerlIO layers. If perl is built |
03d9e98a |
973 | to use PerlIO system for IO (the default) these layers effect perl's IO. |
44a4342c |
974 | |
975 | It is conventional to start layer names with a colon e.g. C<:perlio> to |
976 | emphasise their similarity to variable "attributes". But the code that parses |
977 | layer specification strings (which is also used to decode the PERLIO |
978 | environment variable) treats the colon as a separator. |
979 | |
5b64f2bf |
980 | An unset or empty PERLIO is equivalent to the default set of layers for |
e1020413 |
981 | your platform, for example C<:unix:perlio> on Unix-like systems |
1f070127 |
982 | and C<:unix:crlf> on Windows and other DOS-like systems. |
3b0db4f9 |
983 | |
44a4342c |
984 | The list becomes the default for I<all> perl's IO. Consequently only built-in |
985 | layers can appear in this list, as external layers (such as :encoding()) need |
986 | IO in order to load them!. See L<"open pragma"|open> for how to add external |
987 | encodings as defaults. |
988 | |
989 | The layers that it makes sense to include in the PERLIO environment |
3d897973 |
990 | variable are briefly summarised below. For more details see L<PerlIO>. |
16537909 |
991 | |
992 | =over 8 |
993 | |
994 | =item :bytes |
d74e8afc |
995 | X<:bytes> |
16537909 |
996 | |
18aba96f |
997 | A pseudolayer that turns I<off> the C<:utf8> flag for the layer below. |
998 | Unlikely to be useful on its own in the global PERLIO environment variable. |
999 | You perhaps were thinking of C<:crlf:bytes> or C<:perlio:bytes>. |
16537909 |
1000 | |
1001 | =item :crlf |
d74e8afc |
1002 | X<:crlf> |
16537909 |
1003 | |
3d897973 |
1004 | A layer which does CRLF to "\n" translation distinguishing "text" and |
1005 | "binary" files in the manner of MS-DOS and similar operating systems. |
1006 | (It currently does I<not> mimic MS-DOS as far as treating of Control-Z |
1007 | as being an end-of-file marker.) |
44a4342c |
1008 | |
1009 | =item :mmap |
d74e8afc |
1010 | X<:mmap> |
44a4342c |
1011 | |
1012 | A layer which implements "reading" of files by using C<mmap()> to |
1013 | make (whole) file appear in the process's address space, and then |
3d897973 |
1014 | using that as PerlIO's "buffer". |
16537909 |
1015 | |
44a4342c |
1016 | =item :perlio |
d74e8afc |
1017 | X<:perlio> |
16537909 |
1018 | |
3d897973 |
1019 | This is a re-implementation of "stdio-like" buffering written as a |
1020 | PerlIO "layer". As such it will call whatever layer is below it for |
1021 | its operations (typically C<:unix>). |
16537909 |
1022 | |
18aba96f |
1023 | =item :pop |
d74e8afc |
1024 | X<:pop> |
18aba96f |
1025 | |
1026 | An experimental pseudolayer that removes the topmost layer. |
3d897973 |
1027 | Use with the same care as is reserved for nitroglycerin. |
18aba96f |
1028 | |
44a4342c |
1029 | =item :raw |
d74e8afc |
1030 | X<:raw> |
16537909 |
1031 | |
136e4fd6 |
1032 | A pseudolayer that manipulates other layers. Applying the C<:raw> |
18aba96f |
1033 | layer is equivalent to calling C<binmode($fh)>. It makes the stream |
1034 | pass each byte as-is without any translation. In particular CRLF |
1035 | translation, and/or :utf8 intuited from locale are disabled. |
1cbfc93d |
1036 | |
3d897973 |
1037 | Unlike in the earlier versions of Perl C<:raw> is I<not> |
1038 | just the inverse of C<:crlf> - other layers which would affect the |
1039 | binary nature of the stream are also removed or disabled. |
16537909 |
1040 | |
44a4342c |
1041 | =item :stdio |
d74e8afc |
1042 | X<:stdio> |
44a4342c |
1043 | |
1044 | This layer provides PerlIO interface by wrapping system's ANSI C "stdio" |
1045 | library calls. The layer provides both buffering and IO. |
1046 | Note that C<:stdio> layer does I<not> do CRLF translation even if that |
1047 | is platforms normal behaviour. You will need a C<:crlf> layer above it |
1048 | to do that. |
1049 | |
1050 | =item :unix |
d74e8afc |
1051 | X<:unix> |
44a4342c |
1052 | |
3d897973 |
1053 | Low level layer which calls C<read>, C<write> and C<lseek> etc. |
16537909 |
1054 | |
1055 | =item :utf8 |
d74e8afc |
1056 | X<:utf8> |
16537909 |
1057 | |
18aba96f |
1058 | A pseudolayer that turns on a flag on the layer below to tell perl |
3d897973 |
1059 | that output should be in utf8 and that input should be regarded as |
740d4bb2 |
1060 | already in valid utf8 form. It does not check for validity and as such |
1061 | should be handled with caution for input. Generally C<:encoding(utf8)> is |
1062 | the best option when reading UTF-8 encoded data. |
44a4342c |
1063 | |
1064 | =item :win32 |
d74e8afc |
1065 | X<:win32> |
44a4342c |
1066 | |
ab4f7683 |
1067 | On Win32 platforms this I<experimental> layer uses native "handle" IO |
44a4342c |
1068 | rather than unix-like numeric file descriptor layer. Known to be |
1069 | buggy in this release. |
16537909 |
1070 | |
1071 | =back |
1072 | |
44a4342c |
1073 | On all platforms the default set of layers should give acceptable results. |
1074 | |
e1020413 |
1075 | For Unix platforms that will equivalent of "unix perlio" or "stdio". |
44a4342c |
1076 | Configure is setup to prefer "stdio" implementation if system's library |
1077 | provides for fast access to the buffer, otherwise it uses the "unix perlio" |
1078 | implementation. |
1079 | |
1080 | On Win32 the default in this release is "unix crlf". Win32's "stdio" |
1081 | has a number of bugs/mis-features for perl IO which are somewhat |
99366417 |
1082 | C compiler vendor/version dependent. Using our own C<crlf> layer as |
44a4342c |
1083 | the buffer avoids those issues and makes things more uniform. |
1084 | The C<crlf> layer provides CRLF to/from "\n" conversion as well as |
1085 | buffering. |
1086 | |
1087 | This release uses C<unix> as the bottom layer on Win32 and so still uses C |
1088 | compiler's numeric file descriptor routines. There is an experimental native |
3d897973 |
1089 | C<win32> layer which is expected to be enhanced and should eventually be |
1090 | the default under Win32. |
44a4342c |
1091 | |
5437faeb |
1092 | The PERLIO environment variable is completely ignored when perl |
1093 | is run in taint mode. |
1094 | |
44a4342c |
1095 | =item PERLIO_DEBUG |
d74e8afc |
1096 | X<PERLIO_DEBUG> |
44a4342c |
1097 | |
1098 | If set to the name of a file or device then certain operations of PerlIO |
1099 | sub-system will be logged to that file (opened as append). Typical uses |
e1020413 |
1100 | are Unix: |
44a4342c |
1101 | |
1102 | PERLIO_DEBUG=/dev/tty perl script ... |
1103 | |
1104 | and Win32 approximate equivalent: |
1105 | |
1106 | set PERLIO_DEBUG=CON |
1107 | perl script ... |
1108 | |
923e8b21 |
1109 | This functionality is disabled for setuid scripts and for scripts run |
1110 | with B<-T>. |
16537909 |
1111 | |
1e422769 |
1112 | =item PERLLIB |
d74e8afc |
1113 | X<PERLLIB> |
1e422769 |
1114 | |
48b971ca |
1115 | A list of directories in which to look for Perl library |
1e422769 |
1116 | files before looking in the standard library and the current directory. |
1117 | If PERL5LIB is defined, PERLLIB is not used. |
1118 | |
5437faeb |
1119 | The PERLLIB environment variable is completely ignored when perl |
1120 | is run in taint mode. |
1121 | |
1e422769 |
1122 | =item PERL5DB |
d74e8afc |
1123 | X<PERL5DB> |
1e422769 |
1124 | |
1125 | The command used to load the debugger code. The default is: |
1126 | |
1127 | BEGIN { require 'perl5db.pl' } |
1128 | |
5437faeb |
1129 | The PERL5DB environment variable only used when perl is started with |
1130 | a bare B<-d> switch. |
1131 | |
2cbb2ee1 |
1132 | =item PERL5DB_THREADED |
d74e8afc |
1133 | X<PERL5DB_THREADED> |
2cbb2ee1 |
1134 | |
1135 | If set to a true value, indicates to the debugger that the code being |
1136 | debugged uses threads. |
1137 | |
19799a22 |
1138 | =item PERL5SHELL (specific to the Win32 port) |
d74e8afc |
1139 | X<PERL5SHELL> |
174c211a |
1140 | |
1141 | May be set to an alternative shell that perl must use internally for |
11998fdb |
1142 | executing "backtick" commands or system(). Default is C<cmd.exe /x/d/c> |
ce1da67e |
1143 | on WindowsNT and C<command.com /c> on Windows95. The value is considered |
19799a22 |
1144 | to be space-separated. Precede any character that needs to be protected |
ce1da67e |
1145 | (like a space or backslash) with a backslash. |
1146 | |
1147 | Note that Perl doesn't use COMSPEC for this purpose because |
1148 | COMSPEC has a high degree of variability among users, leading to |
1149 | portability concerns. Besides, perl can use a shell that may not be |
1150 | fit for interactive use, and setting COMSPEC to such a shell may |
1151 | interfere with the proper functioning of other programs (which usually |
1152 | look in COMSPEC to find a shell fit for interactive use). |
174c211a |
1153 | |
5437faeb |
1154 | Before Perl 5.10.0 and 5.8.8, PERL5SHELL was not taint checked |
1155 | when running external commands. It is recommended that |
1156 | you explicitly set (or delete) C<$ENV{PERL5SHELL}> when running |
1157 | in taint mode under Windows. |
1158 | |
1c972609 |
1159 | =item PERL_ALLOW_NON_IFS_LSP (specific to the Win32 port) |
d74e8afc |
1160 | X<PERL_ALLOW_NON_IFS_LSP> |
1c972609 |
1161 | |
1162 | Set to 1 to allow the use of non-IFS compatible LSP's. |
1163 | Perl normally searches for an IFS-compatible LSP because this is required |
1164 | for its emulation of Windows sockets as real filehandles. However, this may |
1165 | cause problems if you have a firewall such as McAfee Guardian which requires |
1166 | all applications to use its LSP which is not IFS-compatible, because clearly |
1167 | Perl will normally avoid using such an LSP. |
1168 | Setting this environment variable to 1 means that Perl will simply use the |
1169 | first suitable LSP enumerated in the catalog, which keeps McAfee Guardian |
1170 | happy (and in that particular case Perl still works too because McAfee |
1171 | Guardian's LSP actually plays some other games which allow applications |
1172 | requiring IFS compatibility to work). |
1173 | |
1e422769 |
1174 | =item PERL_DEBUG_MSTATS |
d74e8afc |
1175 | X<PERL_DEBUG_MSTATS> |
1e422769 |
1176 | |
67ce8856 |
1177 | Relevant only if perl is compiled with the malloc included with the perl |
a3cb178b |
1178 | distribution (that is, if C<perl -V:d_mymalloc> is 'define'). |
1179 | If set, this causes memory statistics to be dumped after execution. If set |
1e422769 |
1180 | to an integer greater than one, also causes memory statistics to be dumped |
1181 | after compilation. |
1182 | |
1183 | =item PERL_DESTRUCT_LEVEL |
d74e8afc |
1184 | X<PERL_DESTRUCT_LEVEL> |
1e422769 |
1185 | |
1186 | Relevant only if your perl executable was built with B<-DDEBUGGING>, |
1187 | this controls the behavior of global destruction of objects and other |
64cea5fd |
1188 | references. See L<perlhack/PERL_DESTRUCT_LEVEL> for more information. |
a0d0e21e |
1189 | |
02c7413a |
1190 | =item PERL_DL_NONLAZY |
d74e8afc |
1191 | X<PERL_DL_NONLAZY> |
02c7413a |
1192 | |
1193 | Set to one to have perl resolve B<all> undefined symbols when it loads |
1194 | a dynamic library. The default behaviour is to resolve symbols when |
1195 | they are used. Setting this variable is useful during testing of |
1196 | extensions as it ensures that you get an error on misspelled function |
1197 | names even if the test suite doesn't call it. |
1198 | |
5d170f3a |
1199 | =item PERL_ENCODING |
d74e8afc |
1200 | X<PERL_ENCODING> |
5d170f3a |
1201 | |
1202 | If using the C<encoding> pragma without an explicit encoding name, the |
1203 | PERL_ENCODING environment variable is consulted for an encoding name. |
1204 | |
504f80c1 |
1205 | =item PERL_HASH_SEED |
d74e8afc |
1206 | X<PERL_HASH_SEED> |
504f80c1 |
1207 | |
09885f82 |
1208 | (Since Perl 5.8.1.) Used to randomise perl's internal hash function. |
4546b9e6 |
1209 | To emulate the pre-5.8.1 behaviour, set to an integer (zero means |
1210 | exactly the same order as 5.8.0). "Pre-5.8.1" means, among other |
09885f82 |
1211 | things, that hash keys will always have the same ordering between |
1212 | different runs of perl. |
8d4a1e6c |
1213 | |
1214 | Most hashes return elements in the same order as Perl 5.8.0 by default. |
1215 | On a hash by hash basis, if pathological data is detected during a hash |
1216 | key insertion, then that hash will switch to an alternative random hash |
1217 | seed. |
504f80c1 |
1218 | |
4546b9e6 |
1219 | The default behaviour is to randomise unless the PERL_HASH_SEED is set. |
09885f82 |
1220 | If perl has been compiled with C<-DUSE_HASH_SEED_EXPLICIT>, the default |
4546b9e6 |
1221 | behaviour is B<not> to randomise unless the PERL_HASH_SEED is set. |
504f80c1 |
1222 | |
09885f82 |
1223 | If PERL_HASH_SEED is unset or set to a non-numeric string, perl uses |
504f80c1 |
1224 | the pseudorandom seed supplied by the operating system and libraries. |
504f80c1 |
1225 | |
26a2d347 |
1226 | B<Please note that the hash seed is sensitive information>. Hashes are |
1227 | randomized to protect against local and remote attacks against Perl |
1228 | code. By manually setting a seed this protection may be partially or |
1229 | completely lost. |
1230 | |
1231 | See L<perlsec/"Algorithmic Complexity Attacks"> and |
1232 | L</PERL_HASH_SEED_DEBUG> for more information. |
504f80c1 |
1233 | |
2191697e |
1234 | =item PERL_HASH_SEED_DEBUG |
d74e8afc |
1235 | X<PERL_HASH_SEED_DEBUG> |
2191697e |
1236 | |
e67b9e52 |
1237 | (Since Perl 5.8.1.) Set to one to display (to STDERR) the value of |
26a2d347 |
1238 | the hash seed at the beginning of execution. This, combined with |
1239 | L</PERL_HASH_SEED> is intended to aid in debugging nondeterministic |
1240 | behavior caused by hash randomization. |
1241 | |
1242 | B<Note that the hash seed is sensitive information>: by knowing it one |
1243 | can craft a denial-of-service attack against Perl code, even remotely, |
1244 | see L<perlsec/"Algorithmic Complexity Attacks"> for more information. |
e67b9e52 |
1245 | B<Do not disclose the hash seed> to people who don't need to know it. |
9a7034eb |
1246 | See also hash_seed() of L<Hash::Util>. |
2191697e |
1247 | |
9aa9f499 |
1248 | =item PERL_MEM_LOG |
1249 | X<PERL_MEM_LOG> |
1250 | |
3188b6e3 |
1251 | If your perl was configured with C<-Accflags=-DPERL_MEM_LOG>, setting the |
1252 | environment variable C<PERL_MEMLOG> enables logging debug messages. The |
1253 | value has the form C<< <number>[m][s][t] >>, where C<number> is the |
1254 | filedescriptor number you want to write to, and the combination of letters |
1255 | specifies that you want information about (m)emory and/or (s)v, optionally |
1256 | with (t)imestamps. For example C<PERL_MEMLOG=1mst> will log all |
1257 | information to stdout. You can write to other opened filedescriptors too, |
1258 | in a variety of ways; |
9aa9f499 |
1259 | |
1260 | bash$ 3>foo3 PERL_MEM_LOG=3m perl ... |
1261 | |
3d0ae7ba |
1262 | =item PERL_ROOT (specific to the VMS port) |
d74e8afc |
1263 | X<PERL_ROOT> |
3d0ae7ba |
1264 | |
1265 | A translation concealed rooted logical name that contains perl and the |
1266 | logical device for the @INC path on VMS only. Other logical names that |
44a4342c |
1267 | affect perl on VMS include PERLSHR, PERL_ENV_TABLES, and |
1268 | SYS$TIMEZONE_DIFFERENTIAL but are optional and discussed further in |
3d0ae7ba |
1269 | L<perlvms> and in F<README.vms> in the Perl source distribution. |
1270 | |
4ffa73a3 |
1271 | =item PERL_SIGNALS |
d74e8afc |
1272 | X<PERL_SIGNALS> |
4ffa73a3 |
1273 | |
1274 | In Perls 5.8.1 and later. If set to C<unsafe> the pre-Perl-5.8.0 |
1275 | signals behaviour (immediate but unsafe) is restored. If set to |
ec488bcf |
1276 | C<safe> the safe (or deferred) signals are used. |
65c3f8ef |
1277 | See L<perlipc/"Deferred Signals (Safe Signals)">. |
4ffa73a3 |
1278 | |
a05d7ebb |
1279 | =item PERL_UNICODE |
d74e8afc |
1280 | X<PERL_UNICODE> |
acae81db |
1281 | |
bf61ac64 |
1282 | Equivalent to the B<-C> command-line switch. Note that this is not |
ac036724 |
1283 | a boolean variable. Setting this to C<"1"> is not the right way to |
5b4f334e |
1284 | "enable Unicode" (whatever that would mean). You can use C<"0"> to |
e654d908 |
1285 | "disable Unicode", though (or alternatively unset PERL_UNICODE in |
1286 | your shell before starting Perl). See the description of the C<-C> |
1287 | switch for more information. |
acae81db |
1288 | |
3d0ae7ba |
1289 | =item SYS$LOGIN (specific to the VMS port) |
d74e8afc |
1290 | X<SYS$LOGIN> |
3d0ae7ba |
1291 | |
1292 | Used if chdir has no argument and HOME and LOGDIR are not set. |
1293 | |
a0d0e21e |
1294 | =back |
1e422769 |
1295 | |
1296 | Perl also has environment variables that control how Perl handles data |
1297 | specific to particular natural languages. See L<perllocale>. |
1298 | |
1299 | Apart from these, Perl uses no other environment variables, except |
19799a22 |
1300 | to make them available to the program being executed, and to child |
1301 | processes. However, programs running setuid would do well to execute |
1e422769 |
1302 | the following lines before doing anything else, just to keep people |
1303 | honest: |
1304 | |
19799a22 |
1305 | $ENV{PATH} = '/bin:/usr/bin'; # or whatever you need |
7bac28a0 |
1306 | $ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL}; |
c90c0ff4 |
1307 | delete @ENV{qw(IFS CDPATH ENV BASH_ENV)}; |