home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _b0b3ac1cc7dbe8d93a19d5e13a330198 < prev    next >
Text File  |  2000-03-23  |  42KB  |  780 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlrun - how to execute the Perl interpreter</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlrun - how to execute the Perl interpreter</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  22.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="##! and quoting on nonunix systems">#! and quoting on non-Unix systems</A></LI>
  26.         <LI><A HREF="#location of perl">Location of Perl</A></LI>
  27.         <LI><A HREF="#command switches">Command Switches</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#environment">ENVIRONMENT</A></LI>
  31. </UL>
  32. <!-- INDEX END -->
  33.  
  34. <HR>
  35. <P>
  36. <H1><A NAME="name">NAME</A></H1>
  37. <P>perlrun - how to execute the Perl interpreter</P>
  38. <P>
  39. <HR>
  40. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  41. <P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD><STRONG>perl</STRONG><TD>[ <STRONG>-CsTuUWX</STRONG> ]
  42. <TR><TD><TD>[ <STRONG>-hv</STRONG> ] [ <STRONG>-V</STRONG>[:<EM>configvar</EM>] ]
  43. <TR><TD><TD>[ <STRONG>-cw</STRONG> ] [ <STRONG>-d</STRONG>[:<EM>debugger</EM>] ] [ <STRONG>-D</STRONG>[<EM>number/list</EM>] ]
  44. <TR><TD><TD>[ <STRONG>-pna</STRONG> ] [ <STRONG>-F</STRONG><EM>pattern</EM> ] [ <STRONG>-l</STRONG>[<EM>octal</EM>] ] [ <STRONG>-0</STRONG>[<EM>octal</EM>] ]
  45. <TR><TD><TD>[ <STRONG>-I</STRONG><EM>dir</EM> ] [ <STRONG>-m</STRONG>[<STRONG>-</STRONG>]<EM>module</EM> ] [ <STRONG>-M</STRONG>[<STRONG>-</STRONG>]<EM>'module...'</EM> ]
  46. <TR><TD><TD>[ <STRONG>-P</STRONG> ]
  47. <TR><TD><TD>[ <STRONG>-S</STRONG> ]
  48. <TR><TD><TD>[ <STRONG>-x</STRONG>[<EM>dir</EM>] ]
  49. <TR><TD><TD>[ <STRONG>-i</STRONG>[<EM>extension</EM>] ]
  50. <TR><TD><TD>[ <STRONG>-e</STRONG> <EM>'command'</EM> ] [ <STRONG>--</STRONG> ] [ <EM>programfile</EM> ] [ <EM>argument</EM> ]...</TABLE></P>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>The normal way to run a Perl program is by making it directly
  55. executable, or else by passing the name of the source file as an
  56. argument on the command line.  (An interactive Perl environment
  57. is also possible--see <A HREF="../../lib/Pod/perldebug.html">the perldebug manpage</A> for details on how to do that.)
  58. Upon startup, Perl looks for your program in one of the following
  59. places:</P>
  60. <OL>
  61. <LI>
  62. Specified line by line via <STRONG>-e</STRONG> switches on the command line.
  63. <P></P>
  64. <LI>
  65. Contained in the file specified by the first filename on the command line.
  66. (Note that systems supporting the #! notation invoke interpreters this
  67. way. See <A HREF="#location of perl">Location of Perl</A>.)
  68. <P></P>
  69. <LI>
  70. Passed in implicitly via standard input.  This works only if there are
  71. no filename arguments--to pass arguments to a STDIN-read program you
  72. must explicitly specify a ``-'' for the program name.
  73. <P></P></OL>
  74. <P>With methods 2 and 3, Perl starts parsing the input file from the
  75. beginning, unless you've specified a <STRONG>-x</STRONG> switch, in which case it
  76. scans for the first line starting with #! and containing the word
  77. ``perl'', and starts there instead.  This is useful for running a program
  78. embedded in a larger message.  (In this case you would indicate the end
  79. of the program using the <CODE>__END__</CODE> token.)</P>
  80. <P>The #! line is always examined for switches as the line is being
  81. parsed.  Thus, if you're on a machine that allows only one argument
  82. with the #! line, or worse, doesn't even recognize the #! line, you
  83. still can get consistent switch behavior regardless of how Perl was
  84. invoked, even if <STRONG>-x</STRONG> was used to find the beginning of the program.</P>
  85. <P>Because historically some operating systems silently chopped off
  86. kernel interpretation of the #! line after 32 characters, some
  87. switches may be passed in on the command line, and some may not;
  88. you could even get a ``-'' without its letter, if you're not careful.
  89. You probably want to make sure that all your switches fall either
  90. before or after that 32-character boundary.  Most switches don't
  91. actually care if they're processed redundantly, but getting a ``-''
  92. instead of a complete switch could cause Perl to try to execute
  93. standard input instead of your program.  And a partial <STRONG>-I</STRONG> switch
  94. could also cause odd results.</P>
  95. <P>Some switches do care if they are processed twice, for instance
  96. combinations of <STRONG>-l</STRONG> and <STRONG>-0</STRONG>.  Either put all the switches after
  97. the 32-character boundary (if applicable), or replace the use of
  98. <STRONG>-0</STRONG><EM>digits</EM> by <CODE>BEGIN{ $/ = "\0digits"; }</CODE>.</P>
  99. <P>Parsing of the #! switches starts wherever ``perl'' is mentioned in the line.
  100. The sequences ``-*'' and ``- '' are specifically ignored so that you could,
  101. if you were so inclined, say</P>
  102. <PRE>
  103.     #!/bin/sh -- # -*- perl -*- -p
  104.     eval 'exec perl -wS $0 ${1+"$@"}'
  105.         if $running_under_some_shell;</PRE>
  106. <P>to let Perl see the <STRONG>-p</STRONG> switch.</P>
  107. <P>A similar trick involves the <STRONG>env</STRONG> program, if you have it.</P>
  108. <PRE>
  109.     #!/usr/bin/env perl</PRE>
  110. <P>The examples above use a relative path to the perl interpreter,
  111. getting whatever version is first in the user's path.  If you want
  112. a specific version of Perl, say, perl5.005_57, you should place
  113. that directly in the #! line's path.</P>
  114. <P>If the #! line does not contain the word ``perl'', the program named after
  115. the #! is executed instead of the Perl interpreter.  This is slightly
  116. bizarre, but it helps people on machines that don't do #!, because they
  117. can tell a program that their SHELL is <EM>/usr/bin/perl</EM>, and Perl will then
  118. dispatch the program to the correct interpreter for them.</P>
  119. <P>After locating your program, Perl compiles the entire program to an
  120. internal form.  If there are any compilation errors, execution of the
  121. program is not attempted.  (This is unlike the typical shell script,
  122. which might run part-way through before finding a syntax error.)</P>
  123. <P>If the program is syntactically correct, it is executed.  If the program
  124. runs off the end without hitting an <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> operator, an implicit
  125. <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit(0)</CODE></A> is provided to indicate successful completion.</P>
  126. <P>
  127. <H2><A NAME="#! and quoting on nonunix systems">#! and quoting on non-Unix systems</A></H2>
  128. <P>Unix's #! technique can be simulated on other systems:</P>
  129. <DL>
  130. <DT><STRONG><A NAME="item_OS%2F2">OS/2</A></STRONG><BR>
  131. <DD>
  132. Put
  133. <PRE>
  134.     extproc perl -S -your_switches</PRE>
  135. <P>as the first line in <CODE>*.cmd</CODE> file (<STRONG>-S</STRONG> due to a bug in cmd.exe's
  136. `extproc' handling).</P>
  137. <P></P>
  138. <DT><STRONG><A NAME="item_MS%2DDOS">MS-DOS</A></STRONG><BR>
  139. <DD>
  140. Create a batch file to run your program, and codify it in
  141. <CODE>ALTERNATIVE_SHEBANG</CODE> (see the <EM>dosish.h</EM> file in the source
  142. distribution for more information).
  143. <P></P>
  144. <DT><STRONG><A NAME="item_Win95%2FNT">Win95/NT</A></STRONG><BR>
  145. <DD>
  146. The Win95/NT installation, when using the ActiveState installer for Perl,
  147. will modify the Registry to associate the <EM>.pl</EM> extension with the perl
  148. interpreter.  If you install Perl by other means (including building from
  149. the sources), you may have to modify the Registry yourself.  Note that
  150. this means you can no longer tell the difference between an executable
  151. Perl program and a Perl library file.
  152. <P></P>
  153. <DT><STRONG><A NAME="item_Macintosh">Macintosh</A></STRONG><BR>
  154. <DD>
  155. A Macintosh perl program will have the appropriate Creator and
  156. Type, so that double-clicking them will invoke the perl application.
  157. <P></P>
  158. <DT><STRONG><A NAME="item_VMS">VMS</A></STRONG><BR>
  159. <DD>
  160. Put
  161. <PRE>
  162.     $ perl -mysw 'f$env("procedure")' 'p1' 'p2' 'p3' 'p4' 'p5' 'p6' 'p7' 'p8' !
  163.     $ exit++ + ++$status != 0 and $exit = $status = undef;</PRE>
  164. <P>at the top of your program, where <STRONG>-mysw</STRONG> are any command line switches you
  165. want to pass to Perl.  You can now invoke the program directly, by saying
  166. <CODE>perl program</CODE>, or as a DCL procedure, by saying <CODE>@program</CODE> (or implicitly
  167. via <EM>DCL$PATH</EM> by just using the name of the program).</P>
  168. <P>This incantation is a bit much to remember, but Perl will display it for
  169. you if you say <CODE>perl "-V:startperl"</CODE>.</P>
  170. <P></P></DL>
  171. <P>Command-interpreters on non-Unix systems have rather different ideas
  172. on quoting than Unix shells.  You'll need to learn the special
  173. characters in your command-interpreter (<CODE>*</CODE>, <CODE>\</CODE> and <CODE>"</CODE> are
  174. common) and how to protect whitespace and these characters to run
  175. one-liners (see <STRONG>-e</STRONG> below).</P>
  176. <P>On some systems, you may have to change single-quotes to double ones,
  177. which you must <EM>not</EM> do on Unix or Plan9 systems.  You might also
  178. have to change a single % to a %%.</P>
  179. <P>For example:</P>
  180. <PRE>
  181.     # Unix
  182.     perl -e 'print "Hello world\n"'</PRE>
  183. <PRE>
  184.     # MS-DOS, etc.
  185.     perl -e "print \"Hello world\n\""</PRE>
  186. <PRE>
  187.     # Macintosh
  188.     print "Hello world\n"
  189.      (then Run "Myscript" or Shift-Command-R)</PRE>
  190. <PRE>
  191.     # VMS
  192.     perl -e "print ""Hello world\n"""</PRE>
  193. <P>The problem is that none of this is reliable: it depends on the
  194. command and it is entirely possible neither works.  If <STRONG>4DOS</STRONG> were
  195. the command shell, this would probably work better:</P>
  196. <PRE>
  197.     perl -e "print <Ctrl-x>"Hello world\n<Ctrl-x>""</PRE>
  198. <P><STRONG>CMD.EXE</STRONG> in Windows NT slipped a lot of standard Unix functionality in
  199. when nobody was looking, but just try to find documentation for its
  200. quoting rules.</P>
  201. <P>Under the Macintosh, it depends which environment you are using.  The MacPerl
  202. shell, or MPW, is much like Unix shells in its support for several
  203. quoting variants, except that it makes free use of the Macintosh's non-ASCII
  204. characters as control characters.</P>
  205. <P>There is no general solution to all of this.  It's just a mess.</P>
  206. <P>
  207. <H2><A NAME="location of perl">Location of Perl</A></H2>
  208. <P>It may seem obvious to say, but Perl is useful only when users can
  209. easily find it.  When possible, it's good for both <EM>/usr/bin/perl</EM>
  210. and <EM>/usr/local/bin/perl</EM> to be symlinks to the actual binary.  If
  211. that can't be done, system administrators are strongly encouraged
  212. to put (symlinks to) perl and its accompanying utilities into a
  213. directory typically found along a user's PATH, or in some other
  214. obvious and convenient place.</P>
  215. <P>In this documentation, <CODE>#!/usr/bin/perl</CODE> on the first line of the program
  216. will stand in for whatever method works on your system.  You are
  217. advised to use a specific path if you care about a specific version.</P>
  218. <PRE>
  219.     #!/usr/local/bin/perl5.00554</PRE>
  220. <P>or if you just want to be running at least version, place a statement
  221. like this at the top of your program:</P>
  222. <PRE>
  223.     use 5.005_54;</PRE>
  224. <P>
  225. <H2><A NAME="command switches">Command Switches</A></H2>
  226. <P>As with all standard commands, a single-character switch may be
  227. clustered with the following switch, if any.</P>
  228. <PRE>
  229.     #!/usr/bin/perl -spi.orig   # same as -s -p -i.orig</PRE>
  230. <P>Switches include:</P>
  231. <DL>
  232. <DT><STRONG><A NAME="item_%2D0%5Bdigits%5D"><STRONG>-0</STRONG>[<EM>digits</EM>]</A></STRONG><BR>
  233. <DD>
  234. specifies the input record separator (<CODE>$/</CODE>) as an octal number.  If there are
  235. no digits, the null character is the separator.  Other switches may
  236. precede or follow the digits.  For example, if you have a version of
  237. <STRONG>find</STRONG> which can print filenames terminated by the null character, you
  238. can say this:
  239. <PRE>
  240.     find . -name '*.orig' -print0 | perl -n0e unlink</PRE>
  241. <P>The special value 00 will cause Perl to slurp files in paragraph mode.
  242. The value 0777 will cause Perl to slurp files whole because there is no
  243. legal character with that value.</P>
  244. <P></P>
  245. <DT><STRONG><A NAME="item_%2Da"><STRONG>-a</STRONG></A></STRONG><BR>
  246. <DD>
  247. turns on autosplit mode when used with a <STRONG>-n</STRONG> or <STRONG>-p</STRONG>.  An implicit
  248. split command to the @F array is done as the first thing inside the
  249. implicit while loop produced by the <STRONG>-n</STRONG> or <STRONG>-p</STRONG>.
  250. <PRE>
  251.     perl -ane 'print pop(@F), "\n";'</PRE>
  252. <P>is equivalent to</P>
  253. <PRE>
  254.     while (<>) {
  255.         @F = split(' ');
  256.         print pop(@F), "\n";
  257.     }</PRE>
  258. <P>An alternate delimiter may be specified using <STRONG>-F</STRONG>.</P>
  259. <P></P>
  260. <DT><STRONG><A NAME="item_%2DC"><STRONG>-C</STRONG></A></STRONG><BR>
  261. <DD>
  262. enables Perl to use the native wide character APIs on the target system.
  263. The magic variable <CODE>${^WIDE_SYSTEM_CALLS}</CODE> reflects the state of
  264. this switch.  See <A HREF="../../lib/Pod/perlvar.html#${^wide_system_calls}">${^WIDE_SYSTEM_CALLS} in the perlvar manpage</A>.
  265. <P>This feature is currently only implemented on the Win32 platform.</P>
  266. <P></P>
  267. <DT><STRONG><A NAME="item_%2Dc"><STRONG>-c</STRONG></A></STRONG><BR>
  268. <DD>
  269. causes Perl to check the syntax of the program and then exit without
  270. executing it.  Actually, it <EM>will</EM> execute <CODE>BEGIN</CODE>, <CODE>CHECK</CODE>, and
  271. <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> blocks, because these are considered as occurring outside the
  272. execution of your program.  <CODE>INIT</CODE> and <CODE>END</CODE> blocks, however, will
  273. be skipped.
  274. <P></P>
  275. <DT><STRONG><A NAME="item_%2Dd"><STRONG>-d</STRONG></A></STRONG><BR>
  276. <DD>
  277. runs the program under the Perl debugger.  See <A HREF="../../lib/Pod/perldebug.html">the perldebug manpage</A>.
  278. <P></P>
  279. <DT><STRONG><A NAME="item_%2Dd%3Afoo"><STRONG>-d:</STRONG><EM>foo</EM></A></STRONG><BR>
  280. <DD>
  281. runs the program under the control of a debugging, profiling, or
  282. tracing module installed as Devel::foo. E.g., <STRONG>-d:DProf</STRONG> executes
  283. the program using the Devel::DProf profiler.  See <A HREF="../../lib/Pod/perldebug.html">the perldebug manpage</A>.
  284. <P></P>
  285. <DT><STRONG><A NAME="item_%2DDletters"><STRONG>-D</STRONG><EM>letters</EM></A></STRONG><BR>
  286. <DD>
  287. <DT><STRONG><A NAME="item_%2DDnumber"><STRONG>-D</STRONG><EM>number</EM></A></STRONG><BR>
  288. <DD>
  289. sets debugging flags.  To watch how it executes your program, use
  290. <STRONG>-Dtls</STRONG>.  (This works only if debugging is compiled into your
  291. Perl.)  Another nice value is <STRONG>-Dx</STRONG>, which lists your compiled
  292. syntax tree.  And <STRONG>-Dr</STRONG> displays compiled regular expressions. As an
  293. alternative, specify a number instead of list of letters (e.g., <STRONG>-D14</STRONG> is
  294. equivalent to <STRONG>-Dtls</STRONG>):
  295. <PRE>
  296.         1  p  Tokenizing and parsing
  297.         2  s  Stack snapshots
  298.         4  l  Context (loop) stack processing
  299.         8  t  Trace execution
  300.        16  o  Method and overloading resolution
  301.        32  c  String/numeric conversions
  302.        64  P  Print preprocessor command for -P
  303.       128  m  Memory allocation
  304.       256  f  Format processing
  305.       512  r  Regular expression parsing and execution
  306.      1024  x  Syntax tree dump
  307.      2048  u  Tainting checks
  308.      4096  L  Memory leaks (needs -DLEAKTEST when compiling Perl)
  309.      8192  H  Hash dump -- usurps values()
  310.     16384  X  Scratchpad allocation
  311.     32768  D  Cleaning up
  312.     65536  S  Thread synchronization</PRE>
  313. <P>All these flags require <STRONG>-DDEBUGGING</STRONG> when you compile the Perl
  314. executable.  See the <EM>INSTALL</EM> file in the Perl source distribution 
  315. for how to do this.  This flag is automatically set if you include <STRONG>-g</STRONG>
  316. option when <CODE>Configure</CODE> asks you about optimizer/debugger flags.</P>
  317. <P>If you're just trying to get a print out of each line of Perl code
  318. as it executes, the way that <CODE>sh -x</CODE> provides for shell scripts,
  319. you can't use Perl's <STRONG>-D</STRONG> switch.  Instead do this</P>
  320. <PRE>
  321.   # Bourne shell syntax
  322.   $ PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program</PRE>
  323. <PRE>
  324.   # csh syntax
  325.   % (setenv PERLDB_OPTS "NonStop=1 AutoTrace=1 frame=2"; perl -dS program)</PRE>
  326. <P>See <A HREF="../../lib/Pod/perldebug.html">the perldebug manpage</A> for details and variations.</P>
  327. <P></P>
  328. <DT><STRONG><A NAME="item_%2De_commandline"><STRONG>-e</STRONG> <EM>commandline</EM></A></STRONG><BR>
  329. <DD>
  330. may be used to enter one line of program.  If <STRONG>-e</STRONG> is given, Perl
  331. will not look for a filename in the argument list.  Multiple <STRONG>-e</STRONG>
  332. commands may be given to build up a multi-line script.  Make sure
  333. to use semicolons where you would in a normal program.
  334. <P></P>
  335. <DT><STRONG><A NAME="item_%2DFpattern"><STRONG>-F</STRONG><EM>pattern</EM></A></STRONG><BR>
  336. <DD>
  337. specifies the pattern to split on if <STRONG>-a</STRONG> is also in effect.  The
  338. pattern may be surrounded by <CODE>//</CODE>, <CODE>""</CODE>, or <CODE>''</CODE>, otherwise it will be
  339. put in single quotes.
  340. <P></P>
  341. <DT><STRONG><A NAME="item_%2Dh"><STRONG>-h</STRONG></A></STRONG><BR>
  342. <DD>
  343. prints a summary of the options.
  344. <P></P>
  345. <DT><STRONG><A NAME="item_%2Di%5Bextension%5D"><STRONG>-i</STRONG>[<EM>extension</EM>]</A></STRONG><BR>
  346. <DD>
  347. specifies that files processed by the <CODE><></CODE> construct are to be
  348. edited in-place.  It does this by renaming the input file, opening the
  349. output file by the original name, and selecting that output file as the
  350. default for <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> statements.  The extension, if supplied, is used to
  351. modify the name of the old file to make a backup copy, following these
  352. rules:
  353. <P>If no extension is supplied, no backup is made and the current file is
  354. overwritten.</P>
  355. <P>If the extension doesn't contain a <CODE>*</CODE>, then it is appended to the
  356. end of the current filename as a suffix.  If the extension does
  357. contain one or more <CODE>*</CODE> characters, then each <CODE>*</CODE> is replaced
  358. with the current filename.  In Perl terms, you could think of this
  359. as:</P>
  360. <PRE>
  361.     ($backup = $extension) =~ s/\*/$file_name/g;</PRE>
  362. <P>This allows you to add a prefix to the backup file, instead of (or in
  363. addition to) a suffix:</P>
  364. <PRE>
  365.     $ perl -pi 'orig_*' -e 's/bar/baz/' fileA   # backup to 'orig_fileA'</PRE>
  366. <P>Or even to place backup copies of the original files into another
  367. directory (provided the directory already exists):</P>
  368. <PRE>
  369.     $ perl -pi 'old/*.orig' -e 's/bar/baz/' fileA # backup to 'old/fileA.orig'</PRE>
  370. <P>These sets of one-liners are equivalent:</P>
  371. <PRE>
  372.     $ perl -pi -e 's/bar/baz/' fileA            # overwrite current file
  373.     $ perl -pi '*' -e 's/bar/baz/' fileA        # overwrite current file</PRE>
  374. <PRE>
  375.     $ perl -pi '.orig' -e 's/bar/baz/' fileA    # backup to 'fileA.orig'
  376.     $ perl -pi '*.orig' -e 's/bar/baz/' fileA   # backup to 'fileA.orig'</PRE>
  377. <P>From the shell, saying</P>
  378. <PRE>
  379.     $ perl -p -i.orig -e "s/foo/bar/; ... "</PRE>
  380. <P>is the same as using the program:</P>
  381. <PRE>
  382.     #!/usr/bin/perl -pi.orig
  383.     s/foo/bar/;</PRE>
  384. <P>which is equivalent to</P>
  385. <PRE>
  386.     #!/usr/bin/perl
  387.     $extension = '.orig';
  388.     LINE: while (<>) {
  389.         if ($ARGV ne $oldargv) {
  390.             if ($extension !~ /\*/) {
  391.                 $backup = $ARGV . $extension;
  392.             }
  393.             else {
  394.                 ($backup = $extension) =~ s/\*/$ARGV/g;
  395.             }
  396.             rename($ARGV, $backup);
  397.             open(ARGVOUT, ">$ARGV");
  398.             select(ARGVOUT);
  399.             $oldargv = $ARGV;
  400.         }
  401.         s/foo/bar/;
  402.     }
  403.     continue {
  404.         print;  # this prints to original filename
  405.     }
  406.     select(STDOUT);</PRE>
  407. <P>except that the <STRONG>-i</STRONG> form doesn't need to compare $ARGV to $oldargv to
  408. know when the filename has changed.  It does, however, use ARGVOUT for
  409. the selected filehandle.  Note that STDOUT is restored as the default
  410. output filehandle after the loop.</P>
  411. <P>As shown above, Perl creates the backup file whether or not any output
  412. is actually changed.  So this is just a fancy way to copy files:</P>
  413. <PRE>
  414.     $ perl -p -i '/some/file/path/*' -e 1 file1 file2 file3...
  415. or
  416.     $ perl -p -i '.orig' -e 1 file1 file2 file3...</PRE>
  417. <P>You can use <A HREF="../../lib/Pod/perlfunc.html#item_eof"><CODE>eof</CODE></A> without parentheses to locate the end of each input
  418. file, in case you want to append to each file, or reset line numbering
  419. (see example in <A HREF="../../lib/Pod/perlfunc.html#eof">eof in the perlfunc manpage</A>).</P>
  420. <P>If, for a given file, Perl is unable to create the backup file as
  421. specified in the extension then it will skip that file and continue on
  422. with the next one (if it exists).</P>
  423. <P>For a discussion of issues surrounding file permissions and <STRONG>-i</STRONG>,
  424. see <A HREF="../../lib/Pod/perlfaq5.html#why does perl let me delete readonly files why does i clobber protected files isn't this a bug in perl">Why does Perl let me delete read-only files?  Why does -i clobber protected files?  Isn't this a bug in Perl? in the perlfaq5 manpage</A>.</P>
  425. <P>You cannot use <STRONG>-i</STRONG> to create directories or to strip extensions from
  426. files.</P>
  427. <P>Perl does not expand <CODE>~</CODE> in filenames, which is good, since some
  428. folks use it for their backup files:</P>
  429. <PRE>
  430.     $ perl -pi~ -e 's/foo/bar/' file1 file2 file3...</PRE>
  431. <P>Finally, the <STRONG>-i</STRONG> switch does not impede execution when no
  432. files are given on the command line.  In this case, no backup is made
  433. (the original file cannot, of course, be determined) and processing
  434. proceeds from STDIN to STDOUT as might be expected.</P>
  435. <P></P>
  436. <DT><STRONG><A NAME="item_%2DIdirectory"><STRONG>-I</STRONG><EM>directory</EM></A></STRONG><BR>
  437. <DD>
  438. Directories specified by <STRONG>-I</STRONG> are prepended to the search path for
  439. modules (<CODE>@INC</CODE>), and also tells the C preprocessor where to search for
  440. include files.  The C preprocessor is invoked with <STRONG>-P</STRONG>; by default it
  441. searches /usr/include and /usr/lib/perl.
  442. <P></P>
  443. <DT><STRONG><A NAME="item_%2Dl%5Boctnum%5D"><STRONG>-l</STRONG>[<EM>octnum</EM>]</A></STRONG><BR>
  444. <DD>
  445. enables automatic line-ending processing.  It has two separate
  446. effects.  First, it automatically chomps <CODE>$/</CODE> (the input record
  447. separator) when used with <STRONG>-n</STRONG> or <STRONG>-p</STRONG>.  Second, it assigns <CODE>$\</CODE>
  448. (the output record separator) to have the value of <EM>octnum</EM> so
  449. that any print statements will have that separator added back on.
  450. If <EM>octnum</EM> is omitted, sets <CODE>$\</CODE> to the current value of
  451. <CODE>$/</CODE>.  For instance, to trim lines to 80 columns:
  452. <PRE>
  453.     perl -lpe 'substr($_, 80) = ""'</PRE>
  454. <P>Note that the assignment <CODE>$\ = $/</CODE> is done when the switch is processed,
  455. so the input record separator can be different than the output record
  456. separator if the <STRONG>-l</STRONG> switch is followed by a <STRONG>-0</STRONG> switch:</P>
  457. <PRE>
  458.     gnufind / -print0 | perl -ln0e 'print "found $_" if -p'</PRE>
  459. <P>This sets <CODE>$\</CODE> to newline and then sets <CODE>$/</CODE> to the null character.</P>
  460. <P></P>
  461. <DT><STRONG><A NAME="item_%2Dm%5B%2D%5Dmodule"><STRONG>-m</STRONG>[<STRONG>-</STRONG>]<EM>module</EM></A></STRONG><BR>
  462. <DD>
  463. <DT><STRONG><A NAME="item_%2DM%5B%2D%5Dmodule"><STRONG>-M</STRONG>[<STRONG>-</STRONG>]<EM>module</EM></A></STRONG><BR>
  464. <DD>
  465. <DT><STRONG><A NAME="item_%2DM%5B%2D%5D%27module_%2E%2E%2E%27"><STRONG>-M</STRONG>[<STRONG>-</STRONG>]<EM>'module ...'</EM></A></STRONG><BR>
  466. <DD>
  467. <DT><STRONG><A NAME="item_%2D%5BmM%5D%5B%2D%5Dmodule%3Darg%5B%2Carg%5D%2E%2E"><STRONG>-[mM]</STRONG>[<STRONG>-</STRONG>]<EM>module=arg[,arg]...</EM></A></STRONG><BR>
  468. <DD>
  469. <STRONG>-m</STRONG><EM>module</EM> executes <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> <EM>module</EM> <CODE>();</CODE> before executing your
  470. program.
  471. <P><STRONG>-M</STRONG><EM>module</EM> executes <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> <EM>module</EM> <CODE>;</CODE> before executing your
  472. program.  You can use quotes to add extra code after the module name,
  473. e.g., <A HREF="../../lib/Pod/perlfunc.html#item_qw"><CODE>'-Mmodule qw(foo bar)'</CODE></A>.</P>
  474. <P>If the first character after the <STRONG>-M</STRONG> or <STRONG>-m</STRONG> is a dash (<CODE>-</CODE>)
  475. then the 'use' is replaced with 'no'.</P>
  476. <P>A little builtin syntactic sugar means you can also say
  477. <STRONG>-mmodule=foo,bar</STRONG> or <STRONG>-Mmodule=foo,bar</STRONG> as a shortcut for
  478. <A HREF="../../lib/Pod/perlfunc.html#item_qw"><CODE>'-Mmodule qw(foo bar)'</CODE></A>.  This avoids the need to use quotes when
  479. importing symbols.  The actual code generated by <STRONG>-Mmodule=foo,bar</STRONG> is
  480. <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>use module split(/,/,q{foo,bar})</CODE></A>.  Note that the <CODE>=</CODE> form
  481. removes the distinction between <STRONG>-m</STRONG> and <STRONG>-M</STRONG>.</P>
  482. <P></P>
  483. <DT><STRONG><A NAME="item_%2Dn"><STRONG>-n</STRONG></A></STRONG><BR>
  484. <DD>
  485. causes Perl to assume the following loop around your program, which
  486. makes it iterate over filename arguments somewhat like <STRONG>sed -n</STRONG> or
  487. <STRONG>awk</STRONG>:
  488. <PRE>
  489.   LINE:
  490.     while (<>) {
  491.         ...             # your program goes here
  492.     }</PRE>
  493. <P>Note that the lines are not printed by default.  See <STRONG>-p</STRONG> to have
  494. lines printed.  If a file named by an argument cannot be opened for
  495. some reason, Perl warns you about it and moves on to the next file.</P>
  496. <P>Here is an efficient way to delete all files older than a week:</P>
  497. <PRE>
  498.     find . -mtime +7 -print | perl -nle unlink</PRE>
  499. <P>This is faster than using the <STRONG>-exec</STRONG> switch of <STRONG>find</STRONG> because you don't
  500. have to start a process on every filename found.  It does suffer from
  501. the bug of mishandling newlines in pathnames, which you can fix if
  502. you</P>
  503. <P><CODE>BEGIN</CODE> and <CODE>END</CODE> blocks may be used to capture control before or after
  504. the implicit program loop, just as in <STRONG>awk</STRONG>.</P>
  505. <P></P>
  506. <DT><STRONG><A NAME="item_%2Dp"><STRONG>-p</STRONG></A></STRONG><BR>
  507. <DD>
  508. causes Perl to assume the following loop around your program, which
  509. makes it iterate over filename arguments somewhat like <STRONG>sed</STRONG>:
  510. <PRE>
  511.   LINE:
  512.     while (<>) {
  513.         ...             # your program goes here
  514.     } continue {
  515.         print or die "-p destination: $!\n";
  516.     }</PRE>
  517. <P>If a file named by an argument cannot be opened for some reason, Perl
  518. warns you about it, and moves on to the next file.  Note that the
  519. lines are printed automatically.  An error occurring during printing is
  520. treated as fatal.  To suppress printing use the <STRONG>-n</STRONG> switch.  A <STRONG>-p</STRONG>
  521. overrides a <STRONG>-n</STRONG> switch.</P>
  522. <P><CODE>BEGIN</CODE> and <CODE>END</CODE> blocks may be used to capture control before or after
  523. the implicit loop, just as in <STRONG>awk</STRONG>.</P>
  524. <P></P>
  525. <DT><STRONG><A NAME="item_%2DP"><STRONG>-P</STRONG></A></STRONG><BR>
  526. <DD>
  527. causes your program to be run through the C preprocessor before
  528. compilation by Perl.  (Because both comments and <STRONG>cpp</STRONG> directives begin
  529. with the # character, you should avoid starting comments with any words
  530. recognized by the C preprocessor such as ``if'', ``else'', or ``define''.)
  531. <P></P>
  532. <DT><STRONG><A NAME="item_%2Ds"><STRONG>-s</STRONG></A></STRONG><BR>
  533. <DD>
  534. enables rudimentary switch parsing for switches on the command
  535. line after the program name but before any filename arguments (or before
  536. a <STRONG>--</STRONG>).  Any switch found there is removed from @ARGV and sets the
  537. corresponding variable in the Perl program.  The following program
  538. prints ``1'' if the program is invoked with a <STRONG>-xyz</STRONG> switch, and ``abc''
  539. if it is invoked with <STRONG>-xyz=abc</STRONG>.
  540. <PRE>
  541.     #!/usr/bin/perl -s
  542.     if ($xyz) { print "$xyz\n" }</PRE>
  543. <P></P>
  544. <DT><STRONG><A NAME="item_%2DS"><STRONG>-S</STRONG></A></STRONG><BR>
  545. <DD>
  546. makes Perl use the PATH environment variable to search for the
  547. program (unless the name of the program contains directory separators).
  548. <P>On some platforms, this also makes Perl append suffixes to the
  549. filename while searching for it.  For example, on Win32 platforms,
  550. the ``.bat'' and ``.cmd'' suffixes are appended if a lookup for the
  551. original name fails, and if the name does not already end in one
  552. of those suffixes.  If your Perl was compiled with DEBUGGING turned
  553. on, using the -Dp switch to Perl shows how the search progresses.</P>
  554. <P>Typically this is used to emulate #! startup on platforms that
  555. don't support #!.  This example works on many platforms that
  556. have a shell compatible with Bourne shell:</P>
  557. <PRE>
  558.     #!/usr/bin/perl
  559.     eval 'exec /usr/bin/perl -wS $0 ${1+"$@"}'
  560.             if $running_under_some_shell;</PRE>
  561. <P>The system ignores the first line and feeds the program to <EM>/bin/sh</EM>,
  562. which proceeds to try to execute the Perl program as a shell script.
  563. The shell executes the second line as a normal shell command, and thus
  564. starts up the Perl interpreter.  On some systems $0 doesn't always
  565. contain the full pathname, so the <STRONG>-S</STRONG> tells Perl to search for the
  566. program if necessary.  After Perl locates the program, it parses the
  567. lines and ignores them because the variable $running_under_some_shell
  568. is never true.  If the program will be interpreted by csh, you will need
  569. to replace <CODE>${1+"$@"}</CODE> with <CODE>$*</CODE>, even though that doesn't understand
  570. embedded spaces (and such) in the argument list.  To start up sh rather
  571. than csh, some systems may have to replace the #! line with a line
  572. containing just a colon, which will be politely ignored by Perl.  Other
  573. systems can't control that, and need a totally devious construct that
  574. will work under any of <STRONG>csh</STRONG>, <STRONG>sh</STRONG>, or Perl, such as the following:</P>
  575. <PRE>
  576.         eval '(exit $?0)' && eval 'exec perl -wS $0 ${1+"$@"}'
  577.         & eval 'exec /usr/bin/perl -wS $0 $argv:q'
  578.                 if $running_under_some_shell;</PRE>
  579. <P>If the filename supplied contains directory separators (i.e., is an
  580. absolute or relative pathname), and if that file is not found,
  581. platforms that append file extensions will do so and try to look
  582. for the file with those extensions added, one by one.</P>
  583. <P>On DOS-like platforms, if the program does not contain directory
  584. separators, it will first be searched for in the current directory
  585. before being searched for on the PATH.  On Unix platforms, the
  586. program will be searched for strictly on the PATH.</P>
  587. <P></P>
  588. <DT><STRONG><A NAME="item_%2DT"><STRONG>-T</STRONG></A></STRONG><BR>
  589. <DD>
  590. forces ``taint'' checks to be turned on so you can test them.  Ordinarily
  591. these checks are done only when running setuid or setgid.  It's a
  592. good idea to turn them on explicitly for programs that run on behalf
  593. of someone else whom you might not necessarily trust, such as CGI
  594. programs or any internet servers you might write in Perl.  See
  595. <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A> for details.  For security reasons, this option must be
  596. seen by Perl quite early; usually this means it must appear early
  597. on the command line or in the #! line for systems which support
  598. that construct.
  599. <P></P>
  600. <DT><STRONG><A NAME="item_%2Du"><STRONG>-u</STRONG></A></STRONG><BR>
  601. <DD>
  602. This obsolete switch causes Perl to dump core after compiling your
  603. program.  You can then in theory take this core dump and turn it
  604. into an executable file by using the <STRONG>undump</STRONG> program (not supplied).
  605. This speeds startup at the expense of some disk space (which you
  606. can minimize by stripping the executable).  (Still, a ``hello world''
  607. executable comes out to about 200K on my machine.)  If you want to
  608. execute a portion of your program before dumping, use the <A HREF="../../lib/Pod/perlfunc.html#item_dump"><CODE>dump()</CODE></A>
  609. operator instead.  Note: availability of <STRONG>undump</STRONG> is platform
  610. specific and may not be available for a specific port of Perl.
  611. <P>This switch has been superseded in favor of the new Perl code
  612. generator backends to the compiler.  See <A HREF="../../lib/B.html">the B manpage</A> and <A HREF="../../lib/B/Bytecode.html">the B::Bytecode manpage</A>
  613. for details.</P>
  614. <P></P>
  615. <DT><STRONG><A NAME="item_%2DU"><STRONG>-U</STRONG></A></STRONG><BR>
  616. <DD>
  617. allows Perl to do unsafe operations.  Currently the only ``unsafe''
  618. operations are the unlinking of directories while running as superuser,
  619. and running setuid programs with fatal taint checks turned into
  620. warnings.  Note that the <STRONG>-w</STRONG> switch (or the <CODE>$^W</CODE> variable) must
  621. be used along with this option to actually <EM>generate</EM> the
  622. taint-check warnings.
  623. <P></P>
  624. <DT><STRONG><A NAME="item_%2Dv"><STRONG>-v</STRONG></A></STRONG><BR>
  625. <DD>
  626. prints the version and patchlevel of your perl executable.
  627. <P></P>
  628. <DT><STRONG><A NAME="item_%2DV"><STRONG>-V</STRONG></A></STRONG><BR>
  629. <DD>
  630. prints summary of the major perl configuration values and the current
  631. values of @INC.
  632. <P></P>
  633. <DT><STRONG><A NAME="item_%2DV%3Aname"><STRONG>-V:</STRONG><EM>name</EM></A></STRONG><BR>
  634. <DD>
  635. Prints to STDOUT the value of the named configuration variable.
  636. For example,
  637. <PRE>
  638.     $ perl -V:man.dir</PRE>
  639. <P>will provide strong clues about what your MANPATH variable should
  640. be set to in order to access the Perl documentation.</P>
  641. <P></P>
  642. <DT><STRONG><A NAME="item_%2Dw"><STRONG>-w</STRONG></A></STRONG><BR>
  643. <DD>
  644. prints warnings about dubious constructs, such as variable names
  645. that are mentioned only once and scalar variables that are used
  646. before being set, redefined subroutines, references to undefined
  647. filehandles or filehandles opened read-only that you are attempting
  648. to write on, values used as a number that doesn't look like numbers,
  649. using an array as though it were a scalar, if your subroutines
  650. recurse more than 100 deep, and innumerable other things.
  651. <P>This switch really just enables the internal <CODE>^$W</CODE> variable.  You
  652. can disable or promote into fatal errors specific warnings using
  653. <CODE>__WARN__</CODE> hooks, as described in <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#warn">warn in the perlfunc manpage</A>.
  654. See also <A HREF="../../lib/Pod/perldiag.html">the perldiag manpage</A> and <A HREF="../../lib/Pod/perltrap.html">the perltrap manpage</A>.  A new, fine-grained warning
  655. facility is also available if you want to manipulate entire classes
  656. of warnings; see <A HREF="../../lib/warnings.html">the warnings manpage</A> or <A HREF="../../lib/Pod/perllexwarn.html">the perllexwarn manpage</A>.</P>
  657. <P></P>
  658. <DT><STRONG><A NAME="item_%2DW"><STRONG>-W</STRONG></A></STRONG><BR>
  659. <DD>
  660. Enables all warnings regardless of <CODE>no warnings</CODE> or <CODE>$^W</CODE>.
  661. See <A HREF="../../lib/Pod/perllexwarn.html">the perllexwarn manpage</A>.
  662. <P></P>
  663. <DT><STRONG><A NAME="item_%2DX"><STRONG>-X</STRONG></A></STRONG><BR>
  664. <DD>
  665. Disables all warnings regardless of <CODE>use warnings</CODE> or <CODE>$^W</CODE>.
  666. See <A HREF="../../lib/Pod/perllexwarn.html">the perllexwarn manpage</A>.
  667. <P></P>
  668. <DT><STRONG><A NAME="item_%2Dx_directory"><STRONG>-x</STRONG> <EM>directory</EM></A></STRONG><BR>
  669. <DD>
  670. tells Perl that the program is embedded in a larger chunk of unrelated
  671. ASCII text, such as in a mail message.  Leading garbage will be
  672. discarded until the first line that starts with #! and contains the
  673. string ``perl''.  Any meaningful switches on that line will be applied.
  674. If a directory name is specified, Perl will switch to that directory
  675. before running the program.  The <STRONG>-x</STRONG> switch controls only the
  676. disposal of leading garbage.  The program must be terminated with
  677. <CODE>__END__</CODE> if there is trailing garbage to be ignored (the program
  678. can process any or all of the trailing garbage via the DATA filehandle
  679. if desired).
  680. <P></P></DL>
  681. <P>
  682. <HR>
  683. <H1><A NAME="environment">ENVIRONMENT</A></H1>
  684. <DL>
  685. <DT><STRONG><A NAME="item_HOME">HOME</A></STRONG><BR>
  686. <DD>
  687. Used if chdir has no argument.
  688. <P></P>
  689. <DT><STRONG><A NAME="item_LOGDIR">LOGDIR</A></STRONG><BR>
  690. <DD>
  691. Used if chdir has no argument and HOME is not set.
  692. <P></P>
  693. <DT><STRONG><A NAME="item_PATH">PATH</A></STRONG><BR>
  694. <DD>
  695. Used in executing subprocesses, and in finding the program if <STRONG>-S</STRONG> is
  696. used.
  697. <P></P>
  698. <DT><STRONG><A NAME="item_PERL5LIB">PERL5LIB</A></STRONG><BR>
  699. <DD>
  700. A colon-separated list of directories in which to look for Perl library
  701. files before looking in the standard library and the current
  702. directory.  Any architecture-specific directories under the specified
  703. locations are automatically included if they exist.  If PERL5LIB is not
  704. defined, PERLLIB is used.
  705. <P>When running taint checks (either because the program was running setuid
  706. or setgid, or the <STRONG>-T</STRONG> switch was used), neither variable is used.
  707. The program should instead say:</P>
  708. <PRE>
  709.     use lib "/my/directory";</PRE>
  710. <P></P>
  711. <DT><STRONG><A NAME="item_PERL5OPT">PERL5OPT</A></STRONG><BR>
  712. <DD>
  713. Command-line options (switches).  Switches in this variable are taken
  714. as if they were on every Perl command line.  Only the <STRONG>-[DIMUdmw]</STRONG>
  715. switches are allowed.  When running taint checks (because the program
  716. was running setuid or setgid, or the <STRONG>-T</STRONG> switch was used), this
  717. variable is ignored.  If PERL5OPT begins with <STRONG>-T</STRONG>, tainting will be
  718. enabled, and any subsequent options ignored.
  719. <P></P>
  720. <DT><STRONG><A NAME="item_PERLLIB">PERLLIB</A></STRONG><BR>
  721. <DD>
  722. A colon-separated list of directories in which to look for Perl library
  723. files before looking in the standard library and the current directory.
  724. If PERL5LIB is defined, PERLLIB is not used.
  725. <P></P>
  726. <DT><STRONG><A NAME="item_PERL5DB">PERL5DB</A></STRONG><BR>
  727. <DD>
  728. The command used to load the debugger code.  The default is:
  729. <PRE>
  730.         BEGIN { require 'perl5db.pl' }</PRE>
  731. <P></P>
  732. <DT><STRONG><A NAME="item_PERL5SHELL">PERL5SHELL (specific to the Win32 port)</A></STRONG><BR>
  733. <DD>
  734. May be set to an alternative shell that perl must use internally for
  735. executing ``backtick'' commands or system().  Default is <CODE>cmd.exe /x/c</CODE>
  736. on WindowsNT and <CODE>command.com /c</CODE> on Windows95.  The value is considered
  737. to be space-separated.  Precede any character that needs to be protected
  738. (like a space or backslash) with a backslash.
  739. <P>Note that Perl doesn't use COMSPEC for this purpose because
  740. COMSPEC has a high degree of variability among users, leading to
  741. portability concerns.  Besides, perl can use a shell that may not be
  742. fit for interactive use, and setting COMSPEC to such a shell may
  743. interfere with the proper functioning of other programs (which usually
  744. look in COMSPEC to find a shell fit for interactive use).</P>
  745. <P></P>
  746. <DT><STRONG><A NAME="item_PERL_DEBUG_MSTATS">PERL_DEBUG_MSTATS</A></STRONG><BR>
  747. <DD>
  748. Relevant only if perl is compiled with the malloc included with the perl
  749. distribution (that is, if <CODE>perl -V:d_mymalloc</CODE> is 'define').
  750. If set, this causes memory statistics to be dumped after execution.  If set
  751. to an integer greater than one, also causes memory statistics to be dumped
  752. after compilation.
  753. <P></P>
  754. <DT><STRONG><A NAME="item_PERL_DESTRUCT_LEVEL">PERL_DESTRUCT_LEVEL</A></STRONG><BR>
  755. <DD>
  756. Relevant only if your perl executable was built with <STRONG>-DDEBUGGING</STRONG>,
  757. this controls the behavior of global destruction of objects and other
  758. references.
  759. <P></P></DL>
  760. <P>Perl also has environment variables that control how Perl handles data
  761. specific to particular natural languages.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.</P>
  762. <P>Apart from these, Perl uses no other environment variables, except
  763. to make them available to the program being executed, and to child
  764. processes.  However, programs running setuid would do well to execute
  765. the following lines before doing anything else, just to keep people
  766. honest:</P>
  767. <PRE>
  768.     $ENV{PATH}  = '/bin:/usr/bin';    # or whatever you need
  769.     $ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL};
  770.     delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};</PRE>
  771. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  772. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  773. <STRONG><P CLASS=block> perlrun - how to execute the Perl interpreter</P></STRONG>
  774. </TD></TR>
  775. </TABLE>
  776.  
  777. </BODY>
  778.  
  779. </HTML>
  780.