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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlvar - Perl predefined variables</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> perlvar - Perl predefined variables</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="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#predefined names">Predefined Names</A></LI>
  25.         <LI><A HREF="#error indicators">Error Indicators</A></LI>
  26.         <LI><A HREF="#technical note on the syntax of variable names">Technical Note on the Syntax of Variable Names</A></LI>
  27.     </UL>
  28.  
  29.     <LI><A HREF="#bugs">BUGS</A></LI>
  30. </UL>
  31. <!-- INDEX END -->
  32.  
  33. <HR>
  34. <P>
  35. <H1><A NAME="name">NAME</A></H1>
  36. <P>perlvar - Perl predefined variables</P>
  37. <P>
  38. <HR>
  39. <H1><A NAME="description">DESCRIPTION</A></H1>
  40. <P>
  41. <H2><A NAME="predefined names">Predefined Names</A></H2>
  42. <P>The following names have special meaning to Perl.  Most 
  43. punctuation names have reasonable mnemonics, or analogs in the
  44. shells.  Nevertheless, if you wish to use long variable names,
  45. you need only say</P>
  46. <PRE>
  47.     use English;</PRE>
  48. <P>at the top of your program.  This will alias all the short names to the
  49. long names in the current package.  Some even have medium names,
  50. generally borrowed from <STRONG>awk</STRONG>.</P>
  51. <P>If you don't mind the performance hit, variables that depend on the
  52. currently selected filehandle may instead be set by calling an
  53. appropriate object method on the IO::Handle object.  (Summary lines
  54. below for this contain the word HANDLE.)  First you must say</P>
  55. <PRE>
  56.     use IO::Handle;</PRE>
  57. <P>after which you may use either</P>
  58. <PRE>
  59.     method HANDLE EXPR</PRE>
  60. <P>or more safely,</P>
  61. <PRE>
  62.     HANDLE->method(EXPR)</PRE>
  63. <P>Each method returns the old value of the IO::Handle attribute.
  64. The methods each take an optional EXPR, which if supplied specifies the
  65. new value for the IO::Handle attribute in question.  If not supplied,
  66. most methods do nothing to the current value--except for
  67. autoflush(), which will assume a 1 for you, just to be different.
  68. Because loading in the IO::Handle class is an expensive operation, you should
  69. learn how to use the regular built-in variables.</P>
  70. <P>A few of these variables are considered ``read-only''.  This means that if
  71. you try to assign to this variable, either directly or indirectly through
  72. a reference, you'll raise a run-time exception.</P>
  73. <P>The following list is ordered by scalar variables first, then the
  74. arrays, then the hashes.</P>
  75. <DL>
  76. <DT><STRONG><A NAME="item_%24ARG">$ARG</A></STRONG><BR>
  77. <DD>
  78. <DT><STRONG><A NAME="item_%24_">$_</A></STRONG><BR>
  79. <DD>
  80. The default input and pattern-searching space.  The following pairs are
  81. equivalent:
  82. <PRE>
  83.     while (<>) {...}    # equivalent only in while!
  84.     while (defined($_ = <>)) {...}</PRE>
  85. <PRE>
  86.     /^Subject:/
  87.     $_ =~ /^Subject:/</PRE>
  88. <PRE>
  89.     tr/a-z/A-Z/
  90.     $_ =~ tr/a-z/A-Z/</PRE>
  91. <PRE>
  92.     chomp
  93.     chomp($_)</PRE>
  94. <P>Here are the places where Perl will assume $_ even if you
  95. don't use it:</P>
  96. <UL>
  97. <LI>
  98. Various unary functions, including functions like <A HREF="../../lib/Pod/perlfunc.html#item_ord"><CODE>ord()</CODE></A> and int(), as well
  99. as the all file tests (<CODE>-f</CODE>, <CODE>-d</CODE>) except for <CODE>-t</CODE>, which defaults to
  100. STDIN.
  101. <P></P>
  102. <LI>
  103. Various list functions like <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> and unlink().
  104. <P></P>
  105. <LI>
  106. The pattern matching operations <CODE>m//</CODE>, <CODE>s///</CODE>, and <CODE>tr///</CODE> when used
  107. without an <CODE>=~</CODE> operator.
  108. <P></P>
  109. <LI>
  110. The default iterator variable in a <CODE>foreach</CODE> loop if no other
  111. variable is supplied.
  112. <P></P>
  113. <LI>
  114. The implicit iterator variable in the <A HREF="../../lib/Pod/perlfunc.html#item_grep"><CODE>grep()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_map"><CODE>map()</CODE></A> functions.
  115. <P></P>
  116. <LI>
  117. The default place to put an input record when a <CODE><FH></CODE>
  118. operation's result is tested by itself as the sole criterion of a <CODE>while</CODE>
  119. test.  Outside a <CODE>while</CODE> test, this will not happen.
  120. <P></P></UL>
  121. <P>(Mnemonic: underline is understood in certain operations.)</P>
  122. </DL>
  123. <DL>
  124. <DT><STRONG><A NAME="item_%24%3Cdigits%3E">$<<EM>digits</EM>></A></STRONG><BR>
  125. <DD>
  126. Contains the subpattern from the corresponding set of capturing
  127. parentheses from the last pattern match, not counting patterns
  128. matched in nested blocks that have been exited already.  (Mnemonic:
  129. like \digits.)  These variables are all read-only and dynamically
  130. scoped to the current BLOCK.
  131. <P></P>
  132. <DT><STRONG><A NAME="item_%24MATCH">$MATCH</A></STRONG><BR>
  133. <DD>
  134. <DT><STRONG><A NAME="item_%24%26">$&</A></STRONG><BR>
  135. <DD>
  136. The string matched by the last successful pattern match (not counting
  137. any matches hidden within a BLOCK or <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> enclosed by the current
  138. BLOCK).  (Mnemonic: like & in some editors.)  This variable is read-only
  139. and dynamically scoped to the current BLOCK.
  140. <P>The use of this variable anywhere in a program imposes a considerable
  141. performance penalty on all regular expression matches.  See <EM>BUGS</EM>.</P>
  142. <P></P>
  143. <DT><STRONG><A NAME="item_%24PREMATCH">$PREMATCH</A></STRONG><BR>
  144. <DD>
  145. <DT><STRONG><A NAME="item_%24%60">$`</A></STRONG><BR>
  146. <DD>
  147. The string preceding whatever was matched by the last successful
  148. pattern match (not counting any matches hidden within a BLOCK or eval
  149. enclosed by the current BLOCK).  (Mnemonic: <CODE>`</CODE> often precedes a quoted
  150. string.)  This variable is read-only.
  151. <P>The use of this variable anywhere in a program imposes a considerable
  152. performance penalty on all regular expression matches.  See <EM>BUGS</EM>.</P>
  153. <P></P>
  154. <DT><STRONG><A NAME="item_%24POSTMATCH">$POSTMATCH</A></STRONG><BR>
  155. <DD>
  156. <DT><STRONG><A NAME="item_%24%27">$'</A></STRONG><BR>
  157. <DD>
  158. The string following whatever was matched by the last successful
  159. pattern match (not counting any matches hidden within a BLOCK or <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A>
  160. enclosed by the current BLOCK).  (Mnemonic: <CODE>'</CODE> often follows a quoted
  161. string.)  Example:
  162. <PRE>
  163.     $_ = 'abcdefghi';
  164.     /def/;
  165.     print "$`:$&:$'\n";         # prints abc:def:ghi</PRE>
  166. <P>This variable is read-only and dynamically scoped to the current BLOCK.</P>
  167. <P>The use of this variable anywhere in a program imposes a considerable
  168. performance penalty on all regular expression matches.  See <EM>BUGS</EM>.</P>
  169. <P></P>
  170. <DT><STRONG><A NAME="item_%24LAST_PAREN_MATCH">$LAST_PAREN_MATCH</A></STRONG><BR>
  171. <DD>
  172. <DT><STRONG><A NAME="item_%24%2B">$+</A></STRONG><BR>
  173. <DD>
  174. The last bracket matched by the last search pattern.  This is useful if
  175. you don't know which one of a set of alternative patterns matched.  For
  176. example:
  177. <PRE>
  178.     /Version: (.*)|Revision: (.*)/ && ($rev = $+);</PRE>
  179. <P>(Mnemonic: be positive and forward looking.)
  180. This variable is read-only and dynamically scoped to the current BLOCK.</P>
  181. <P></P>
  182. <DT><STRONG><A NAME="item_%40%2B">@+</A></STRONG><BR>
  183. <DD>
  184. This array holds the offsets of the ends of the last successful
  185. submatches in the currently active dynamic scope.  <CODE>$+[0]</CODE> is
  186. the offset into the string of the end of the entire match.  This
  187. is the same value as what the <A HREF="../../lib/Pod/perlfunc.html#item_pos"><CODE>pos</CODE></A> function returns when called
  188. on the variable that was matched against.  The <EM>n</EM>th element
  189. of this array holds the offset of the <EM>n</EM>th submatch, so
  190. <CODE>$+[1]</CODE> is the offset past where $1 ends, <CODE>$+[2]</CODE> the offset
  191. past where $2 ends, and so on.  You can use <CODE>$#+</CODE> to determine
  192. how many subgroups were in the last successful match.  See the
  193. examples given for the <A HREF="#item_%40%2D"><CODE>@-</CODE></A> variable.
  194. <P></P>
  195. <DT><STRONG><A NAME="item_%24MULTILINE_MATCHING">$MULTILINE_MATCHING</A></STRONG><BR>
  196. <DD>
  197. <DT><STRONG><A NAME="item_%24%2A">$*</A></STRONG><BR>
  198. <DD>
  199. Set to 1 to do multi-line matching within a string, 0 to tell Perl
  200. that it can assume that strings contain a single line, for the purpose
  201. of optimizing pattern matches.  Pattern matches on strings containing
  202. multiple newlines can produce confusing results when <A HREF="#item_%24%2A"><CODE>$*</CODE></A> is 0.  Default
  203. is 0.  (Mnemonic: * matches multiple things.)  This variable
  204. influences the interpretation of only <CODE>^</CODE> and <CODE>$</CODE>.  A literal newline can
  205. be searched for even when <CODE>$* == 0</CODE>.
  206. <P>Use of <A HREF="#item_%24%2A"><CODE>$*</CODE></A> is deprecated in modern Perl, supplanted by 
  207. the <CODE>/s</CODE> and <CODE>/m</CODE> modifiers on pattern matching.</P>
  208. <P></P>
  209. <DT><STRONG><A NAME="item_input_line_number_HANDLE_EXPR">input_line_number HANDLE EXPR</A></STRONG><BR>
  210. <DD>
  211. <DT><STRONG><A NAME="item_%24INPUT_LINE_NUMBER">$INPUT_LINE_NUMBER</A></STRONG><BR>
  212. <DD>
  213. <DT><STRONG><A NAME="item_%24NR">$NR</A></STRONG><BR>
  214. <DD>
  215. <DT><STRONG><A NAME="item_%24%2E">$.</A></STRONG><BR>
  216. <DD>
  217. The current input record number for the last file handle from which
  218. you just <A HREF="../../lib/Pod/perlfunc.html#item_read"><CODE>read()</CODE></A> (or called a <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> on).  The value
  219. may be different from the actual physical line number in the file,
  220. depending on what notion of ``line'' is in effect--see <A HREF="#item_%24%2F"><CODE>$/</CODE></A> on how
  221. to change that.  An explicit close on a filehandle resets the line
  222. number.  Because <CODE><></CODE> never does an explicit close, line
  223. numbers increase across ARGV files (but see examples in <A HREF="../../lib/Pod/perlfunc.html#eof">eof in the perlfunc manpage</A>).
  224. Consider this variable read-only: setting it does not reposition
  225. the seek pointer; you'll have to do that on your own.  Localizing <A HREF="#item_%24%2E"><CODE>$.</CODE></A>
  226. has the effect of also localizing Perl's notion of ``the last read
  227. filehandle''.  (Mnemonic: many programs use ``.'' to mean the current line
  228. number.)
  229. <P></P>
  230. <DT><STRONG><A NAME="item_input_record_separator_HANDLE_EXPR">input_record_separator HANDLE EXPR</A></STRONG><BR>
  231. <DD>
  232. <DT><STRONG><A NAME="item_%24INPUT_RECORD_SEPARATOR">$INPUT_RECORD_SEPARATOR</A></STRONG><BR>
  233. <DD>
  234. <DT><STRONG><A NAME="item_%24RS">$RS</A></STRONG><BR>
  235. <DD>
  236. <DT><STRONG><A NAME="item_%24%2F">$/</A></STRONG><BR>
  237. <DD>
  238. The input record separator, newline by default.  This 
  239. influences Perl's idea of what a ``line'' is.  Works like <STRONG>awk</STRONG>'s RS
  240. variable, including treating empty lines as a terminator if set to
  241. the null string.  (An empty line cannot contain any spaces
  242. or tabs.)  You may set it to a multi-character string to match a
  243. multi-character terminator, or to <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> to read through the end
  244. of file.  Setting it to <CODE>"\n\n"</CODE> means something slightly
  245. different than setting to <CODE>""</CODE>, if the file contains consecutive
  246. empty lines.  Setting to <CODE>""</CODE> will treat two or more consecutive
  247. empty lines as a single empty line.  Setting to <CODE>"\n\n"</CODE> will
  248. blindly assume that the next input character belongs to the next
  249. paragraph, even if it's a newline.  (Mnemonic: / delimits
  250. line boundaries when quoting poetry.)
  251. <PRE>
  252.     undef $/;           # enable "slurp" mode
  253.     $_ = <FH>;          # whole file now here
  254.     s/\n[ \t]+/ /g;</PRE>
  255. <P>Remember: the value of <A HREF="#item_%24%2F"><CODE>$/</CODE></A> is a string, not a regex.  <STRONG>awk</STRONG> has to be
  256. better for something. :-)</P>
  257. <P>Setting <A HREF="#item_%24%2F"><CODE>$/</CODE></A> to a reference to an integer, scalar containing an integer, or
  258. scalar that's convertible to an integer will attempt to read records
  259. instead of lines, with the maximum record size being the referenced
  260. integer.  So this:</P>
  261. <PRE>
  262.     $/ = \32768; # or \"32768", or \$var_containing_32768
  263.     open(FILE, $myfile);
  264.     $_ = <FILE>;</PRE>
  265. <P>will read a record of no more than 32768 bytes from FILE.  If you're
  266. not reading from a record-oriented file (or your OS doesn't have
  267. record-oriented files), then you'll likely get a full chunk of data
  268. with every read.  If a record is larger than the record size you've
  269. set, you'll get the record back in pieces.</P>
  270. <P>On VMS, record reads are done with the equivalent of <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread</CODE></A>,
  271. so it's best not to mix record and non-record reads on the same
  272. file.  (This is unlikely to be a problem, because any file you'd
  273. want to read in record mode is probably unusable in line mode.)
  274. Non-VMS systems do normal I/O, so it's safe to mix record and
  275. non-record reads of a file.</P>
  276. <P>See also <A HREF="../../lib/Pod/perlport.html#newlines">Newlines in the perlport manpage</A>.  Also see <A HREF="#item_%24%2E"><CODE>$.</CODE></A>.</P>
  277. <P></P>
  278. <DT><STRONG><A NAME="item_autoflush">autoflush HANDLE EXPR</A></STRONG><BR>
  279. <DD>
  280. <DT><STRONG><A NAME="item_%24OUTPUT_AUTOFLUSH">$OUTPUT_AUTOFLUSH</A></STRONG><BR>
  281. <DD>
  282. <DT><STRONG><A NAME="item_%24%7C">$|</A></STRONG><BR>
  283. <DD>
  284. If set to nonzero, forces a flush right away and after every write
  285. or print on the currently selected output channel.  Default is 0
  286. (regardless of whether the channel is really buffered by the
  287. system or not; <A HREF="#item_%24%7C"><CODE>$|</CODE></A> tells you only whether you've asked Perl
  288. explicitly to flush after each write).  STDOUT will
  289. typically be line buffered if output is to the terminal and block
  290. buffered otherwise.  Setting this variable is useful primarily when
  291. you are outputting to a pipe or socket, such as when you are running
  292. a Perl program under <STRONG>rsh</STRONG> and want to see the output as it's
  293. happening.  This has no effect on input buffering.  See <A HREF="../../lib/Pod/perlfunc.html#getc">getc in the perlfunc manpage</A>
  294. for that.  (Mnemonic: when you want your pipes to be piping hot.)
  295. <P></P>
  296. <DT><STRONG><A NAME="item_output_field_separator_HANDLE_EXPR">output_field_separator HANDLE EXPR</A></STRONG><BR>
  297. <DD>
  298. <DT><STRONG><A NAME="item_%24OUTPUT_FIELD_SEPARATOR">$OUTPUT_FIELD_SEPARATOR</A></STRONG><BR>
  299. <DD>
  300. <DT><STRONG><A NAME="item_%24OFS">$OFS</A></STRONG><BR>
  301. <DD>
  302. <DT><STRONG><A NAME="item_%24%2C">$,</A></STRONG><BR>
  303. <DD>
  304. The output field separator for the print operator.  Ordinarily the
  305. print operator simply prints out its arguments without further
  306. adornment.  To get behavior more like <STRONG>awk</STRONG>, set this variable as
  307. you would set <STRONG>awk</STRONG>'s OFS variable to specify what is printed
  308. between fields.  (Mnemonic: what is printed when there is a ``,'' in
  309. your print statement.)
  310. <P></P>
  311. <DT><STRONG><A NAME="item_output_record_separator_HANDLE_EXPR">output_record_separator HANDLE EXPR</A></STRONG><BR>
  312. <DD>
  313. <DT><STRONG><A NAME="item_%24OUTPUT_RECORD_SEPARATOR">$OUTPUT_RECORD_SEPARATOR</A></STRONG><BR>
  314. <DD>
  315. <DT><STRONG><A NAME="item_%24ORS">$ORS</A></STRONG><BR>
  316. <DD>
  317. <DT><STRONG><A NAME="item_%24%5C">$\</A></STRONG><BR>
  318. <DD>
  319. The output record separator for the print operator.  Ordinarily the
  320. print operator simply prints out its arguments as is, with no
  321. trailing newline or other end-of-record string added.  To get
  322. behavior more like <STRONG>awk</STRONG>, set this variable as you would set
  323. <STRONG>awk</STRONG>'s ORS variable to specify what is printed at the end of the
  324. print.  (Mnemonic: you set <A HREF="#item_%24%5C"><CODE>$\</CODE></A> instead of adding ``\n'' at the
  325. end of the print.  Also, it's just like <A HREF="#item_%24%2F"><CODE>$/</CODE></A>, but it's what you
  326. get ``back'' from Perl.)
  327. <P></P>
  328. <DT><STRONG><A NAME="item_%24LIST_SEPARATOR">$LIST_SEPARATOR</A></STRONG><BR>
  329. <DD>
  330. <DT><STRONG><A NAME="item_%24%22">$``</A></STRONG><BR>
  331. <DD>
  332. This is like <A HREF="#item_%24%2C"><CODE>$,</CODE></A> except that it applies to array and slice values
  333. interpolated into a double-quoted string (or similar interpreted
  334. string).  Default is a space.  (Mnemonic: obvious, I think.)
  335. <P></P>
  336. <DT><STRONG><A NAME="item_%24SUBSCRIPT_SEPARATOR">$SUBSCRIPT_SEPARATOR</A></STRONG><BR>
  337. <DD>
  338. <DT><STRONG><A NAME="item_%24SUBSEP">$SUBSEP</A></STRONG><BR>
  339. <DD>
  340. <DT><STRONG><A NAME="item_%24%3B">$;</A></STRONG><BR>
  341. <DD>
  342. The subscript separator for multidimensional array emulation.  If you
  343. refer to a hash element as
  344. <PRE>
  345.     $foo{$a,$b,$c}</PRE>
  346. <P>it really means</P>
  347. <PRE>
  348.     $foo{join($;, $a, $b, $c)}</PRE>
  349. <P>But don't put</P>
  350. <PRE>
  351.     @foo{$a,$b,$c}      # a slice--note the @</PRE>
  352. <P>which means</P>
  353. <PRE>
  354.     ($foo{$a},$foo{$b},$foo{$c})</PRE>
  355. <P>Default is ``\034'', the same as SUBSEP in <STRONG>awk</STRONG>.  If your
  356. keys contain binary data there might not be any safe value for <A HREF="#item_%24%3B"><CODE>$;</CODE></A>.
  357. (Mnemonic: comma (the syntactic subscript separator) is a
  358. semi-semicolon.  Yeah, I know, it's pretty lame, but <A HREF="#item_%24%2C"><CODE>$,</CODE></A> is already
  359. taken for something more important.)</P>
  360. <P>Consider using ``real'' multidimensional arrays as described
  361. in <A HREF="../../lib/Pod/perllol.html">the perllol manpage</A>.</P>
  362. <P></P>
  363. <DT><STRONG><A NAME="item_%24OFMT">$OFMT</A></STRONG><BR>
  364. <DD>
  365. <DT><STRONG><A NAME="item_%24%23">$#</A></STRONG><BR>
  366. <DD>
  367. The output format for printed numbers.  This variable is a half-hearted
  368. attempt to emulate <STRONG>awk</STRONG>'s OFMT variable.  There are times, however,
  369. when <STRONG>awk</STRONG> and Perl have differing notions of what counts as 
  370. numeric.  The initial value is ``%.<EM>n</EM>g'', where <EM>n</EM> is the value
  371. of the macro DBL_DIG from your system's <EM>float.h</EM>.  This is different from
  372. <STRONG>awk</STRONG>'s default OFMT setting of ``%.6g'', so you need to set <A HREF="#item_%24%23"><CODE>$#</CODE></A>
  373. explicitly to get <STRONG>awk</STRONG>'s value.  (Mnemonic: # is the number sign.)
  374. <P>Use of <A HREF="#item_%24%23"><CODE>$#</CODE></A> is deprecated.</P>
  375. <P></P>
  376. <DT><STRONG><A NAME="item_format_page_number_HANDLE_EXPR">format_page_number HANDLE EXPR</A></STRONG><BR>
  377. <DD>
  378. <DT><STRONG><A NAME="item_%24FORMAT_PAGE_NUMBER">$FORMAT_PAGE_NUMBER</A></STRONG><BR>
  379. <DD>
  380. <DT><STRONG><A NAME="item_%24%25">$%</A></STRONG><BR>
  381. <DD>
  382. The current page number of the currently selected output channel.
  383. Used with formats.
  384. (Mnemonic: % is page number in <STRONG>nroff</STRONG>.)
  385. <P></P>
  386. <DT><STRONG><A NAME="item_format_lines_per_page_HANDLE_EXPR">format_lines_per_page HANDLE EXPR</A></STRONG><BR>
  387. <DD>
  388. <DT><STRONG><A NAME="item_%24FORMAT_LINES_PER_PAGE">$FORMAT_LINES_PER_PAGE</A></STRONG><BR>
  389. <DD>
  390. <DT><STRONG><A NAME="item_%24%3D">$=</A></STRONG><BR>
  391. <DD>
  392. The current page length (printable lines) of the currently selected
  393. output channel.  Default is 60.  
  394. Used with formats.
  395. (Mnemonic: = has horizontal lines.)
  396. <P></P>
  397. <DT><STRONG><A NAME="item_format_lines_left_HANDLE_EXPR">format_lines_left HANDLE EXPR</A></STRONG><BR>
  398. <DD>
  399. <DT><STRONG><A NAME="item_%24FORMAT_LINES_LEFT">$FORMAT_LINES_LEFT</A></STRONG><BR>
  400. <DD>
  401. <DT><STRONG><A NAME="item_%24%2D">$-</A></STRONG><BR>
  402. <DD>
  403. The number of lines left on the page of the currently selected output
  404. channel.  
  405. Used with formats.
  406. (Mnemonic: lines_on_page - lines_printed.)
  407. <P></P>
  408. <DT><STRONG><A NAME="item_%40%2D">@-</A></STRONG><BR>
  409. <DD>
  410. $-[0] is the offset of the start of the last successful match.
  411. <CODE>$-[</CODE><EM>n</EM><CODE>]</CODE> is the offset of the start of the substring matched by
  412. <EM>n</EM>-th subpattern, or undef if the subpattern did not match.
  413. <P>Thus after a match against $_, $& coincides with <CODE>substr $_, $-[0],
  414. $+[0] - $-[0]</CODE>.  Similarly, <CODE>$</CODE><EM>n</EM> coincides with <CODE>substr $_, $-[</CODE><EM>n</EM><CODE>],
  415. $+[</CODE><EM>n</EM><CODE>] - $-[</CODE><EM>n</EM><CODE>]</CODE> if <CODE>$-[</CODE><EM>n</EM><CODE>]</CODE> is defined, and $+ coincides with
  416. <CODE>substr $_, $-[$#-], $+[$#-]</CODE>.  One can use <CODE>$#-</CODE> to find the last
  417. matched subgroup in the last successful match.  Contrast with
  418. <CODE>$#+</CODE>, the number of subgroups in the regular expression.  Compare
  419. with <A HREF="#item_%40%2B"><CODE>@+</CODE></A>.</P>
  420. <P>This array holds the offsets of the beginnings of the last
  421. successful submatches in the currently active dynamic scope.
  422. <CODE>$-[0]</CODE> is the offset into the string of the beginning of the
  423. entire match.  The <EM>n</EM>th element of this array holds the offset
  424. of the <EM>n</EM>th submatch, so <CODE>$+[1]</CODE> is the offset where $1
  425. begins, <CODE>$+[2]</CODE> the offset where $2 begins, and so on.
  426. You can use <CODE>$#-</CODE> to determine how many subgroups were in the
  427. last successful match.  Compare with the <A HREF="#item_%40%2B"><CODE>@+</CODE></A> variable.</P>
  428. <P>After a match against some variable $var:</P>
  429. <DL>
  430. <DT><STRONG><A NAME="item_substr"><A HREF="#item_%24%60"><CODE>$`</CODE></A> is the same as <CODE>substr($var, 0, $-[0]</CODE>)</A></STRONG><BR>
  431. <DD>
  432. <DT><STRONG><A HREF="#item_%24%26"><CODE>$&</CODE></A> is the same as <CODE>substr($var, $-[0], $+[0] - $-[0]</CODE>)</STRONG><BR>
  433. <DD>
  434. <DT><STRONG><A HREF="#item_%24%27"><CODE>$'</CODE></A> is the same as <CODE>substr($var, $+[0]</CODE>)</STRONG><BR>
  435. <DD>
  436. <DT><STRONG><CODE>$1</CODE> is the same as <CODE>substr($var, $-[1], $+[1] - $-[1])</CODE></STRONG><BR>
  437. <DD>
  438. <DT><STRONG><CODE>$2</CODE> is the same as <CODE>substr($var, $-[2], $+[2] - $-[2])</CODE></STRONG><BR>
  439. <DD>
  440. <DT><STRONG><A NAME="item_%243_is_the_same_as_substr_%24var%2C_%24%2D%5B3%5D"><CODE>$3</CODE> is the same as <CODE>substr $var, $-[3], $+[3] - $-[3]</CODE>)</A></STRONG><BR>
  441. <DD>
  442. </DL>
  443. <DT><STRONG><A NAME="item_format_name_HANDLE_EXPR">format_name HANDLE EXPR</A></STRONG><BR>
  444. <DD>
  445. <DT><STRONG><A NAME="item_%24FORMAT_NAME">$FORMAT_NAME</A></STRONG><BR>
  446. <DD>
  447. <DT><STRONG><A NAME="item_%24%7E">$~</A></STRONG><BR>
  448. <DD>
  449. The name of the current report format for the currently selected output
  450. channel.  Default is the name of the filehandle.  (Mnemonic: brother to
  451. <A HREF="#item_%24%5E"><CODE>$^</CODE></A>.)
  452. <P></P>
  453. <DT><STRONG><A NAME="item_format_top_name_HANDLE_EXPR">format_top_name HANDLE EXPR</A></STRONG><BR>
  454. <DD>
  455. <DT><STRONG><A NAME="item_%24FORMAT_TOP_NAME">$FORMAT_TOP_NAME</A></STRONG><BR>
  456. <DD>
  457. <DT><STRONG><A NAME="item_%24%5E">$^</A></STRONG><BR>
  458. <DD>
  459. The name of the current top-of-page format for the currently selected
  460. output channel.  Default is the name of the filehandle with _TOP
  461. appended.  (Mnemonic: points to top of page.)
  462. <P></P>
  463. <DT><STRONG><A NAME="item_format_line_break_characters_HANDLE_EXPR">format_line_break_characters HANDLE EXPR</A></STRONG><BR>
  464. <DD>
  465. <DT><STRONG><A NAME="item_%24FORMAT_LINE_BREAK_CHARACTERS">$FORMAT_LINE_BREAK_CHARACTERS</A></STRONG><BR>
  466. <DD>
  467. <DT><STRONG><A NAME="item_%24%3A">$:</A></STRONG><BR>
  468. <DD>
  469. The current set of characters after which a string may be broken to
  470. fill continuation fields (starting with ^) in a format.  Default is
  471. `` \n-'', to break on whitespace or hyphens.  (Mnemonic: a ``colon'' in
  472. poetry is a part of a line.)
  473. <P></P>
  474. <DT><STRONG><A NAME="item_format_formfeed_HANDLE_EXPR">format_formfeed HANDLE EXPR</A></STRONG><BR>
  475. <DD>
  476. <DT><STRONG><A NAME="item_%24FORMAT_FORMFEED">$FORMAT_FORMFEED</A></STRONG><BR>
  477. <DD>
  478. <DT><STRONG><A NAME="item_%24%5EL">$^L</A></STRONG><BR>
  479. <DD>
  480. What formats output as a form feed.  Default is \f.
  481. <P></P>
  482. <DT><STRONG><A NAME="item_%24ACCUMULATOR">$ACCUMULATOR</A></STRONG><BR>
  483. <DD>
  484. <DT><STRONG><A NAME="item_%24%5EA">$^A</A></STRONG><BR>
  485. <DD>
  486. The current value of the <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A> accumulator for <A HREF="../../lib/Pod/perlfunc.html#item_format"><CODE>format()</CODE></A> lines.  A format
  487. contains <A HREF="../../lib/Pod/perlfunc.html#item_formline"><CODE>formline()</CODE></A> calls that put their result into <A HREF="#item_%24%5EA"><CODE>$^A</CODE></A>.  After
  488. calling its format, <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A> prints out the contents of <A HREF="#item_%24%5EA"><CODE>$^A</CODE></A> and empties.
  489. So you never really see the contents of <A HREF="#item_%24%5EA"><CODE>$^A</CODE></A> unless you call
  490. <A HREF="../../lib/Pod/perlfunc.html#item_formline"><CODE>formline()</CODE></A> yourself and then look at it.  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A> and
  491. <A HREF="../../lib/Pod/perlfunc.html#formline()">formline() in the perlfunc manpage</A>.
  492. <P></P>
  493. <DT><STRONG><A NAME="item_%24CHILD_ERROR">$CHILD_ERROR</A></STRONG><BR>
  494. <DD>
  495. <DT><STRONG><A NAME="item_%24%3F">$?</A></STRONG><BR>
  496. <DD>
  497. The status returned by the last pipe close, backtick (<CODE>``</CODE>) command,
  498. successful call to <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait()</CODE></A> or waitpid(), or from the <A HREF="../../lib/Pod/perlfunc.html#item_system"><CODE>system()</CODE></A>
  499. operator.  This is just the 16-bit status word returned by the
  500. <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait()</CODE></A> system call (or else is made up to look like it).  Thus, the
  501. exit value of the subprocess is really (<CODE>$? >> 8</CODE>), and
  502. <CODE>$? & 127</CODE> gives which signal, if any, the process died from, and
  503. <CODE>$? & 128</CODE> reports whether there was a core dump.  (Mnemonic:
  504. similar to <STRONG>sh</STRONG> and <STRONG>ksh</STRONG>.)
  505. <P>Additionally, if the <CODE>h_errno</CODE> variable is supported in C, its value
  506. is returned via $? if any <CODE>gethost*()</CODE> function fails.</P>
  507. <P>If you have installed a signal handler for <CODE>SIGCHLD</CODE>, the
  508. value of <A HREF="#item_%24%3F"><CODE>$?</CODE></A> will usually be wrong outside that handler.</P>
  509. <P>Inside an <CODE>END</CODE> subroutine <A HREF="#item_%24%3F"><CODE>$?</CODE></A> contains the value that is going to be
  510. given to <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit()</CODE></A>.  You can modify <A HREF="#item_%24%3F"><CODE>$?</CODE></A> in an <CODE>END</CODE> subroutine to
  511. change the exit status of your program.  For example:</P>
  512. <PRE>
  513.     END {
  514.         $? = 1 if $? == 255;  # die would make it 255
  515.     }</PRE>
  516. <P>Under VMS, the pragma <CODE>use vmsish 'status'</CODE> makes <A HREF="#item_%24%3F"><CODE>$?</CODE></A> reflect the
  517. actual VMS exit status, instead of the default emulation of POSIX
  518. status.</P>
  519. <P>Also see <A HREF="#error indicators">Error Indicators</A>.</P>
  520. <P></P>
  521. <DT><STRONG><A NAME="item_%24OS_ERROR">$OS_ERROR</A></STRONG><BR>
  522. <DD>
  523. <DT><STRONG><A NAME="item_%24ERRNO">$ERRNO</A></STRONG><BR>
  524. <DD>
  525. <DT><STRONG><A NAME="item_%24%21">$!</A></STRONG><BR>
  526. <DD>
  527. If used numerically, yields the current value of the C <CODE>errno</CODE>
  528. variable, with all the usual caveats.  (This means that you shouldn't
  529. depend on the value of <A HREF="#item_%24%21"><CODE>$!</CODE></A> to be anything in particular unless
  530. you've gotten a specific error return indicating a system error.)
  531. If used an a string, yields the corresponding system error string.
  532. You can assign a number to <A HREF="#item_%24%21"><CODE>$!</CODE></A> to set <EM>errno</EM> if, for instance,
  533. you want <CODE>"$!"</CODE> to return the string for error <EM>n</EM>, or you want
  534. to set the exit value for the <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> operator.  (Mnemonic: What just
  535. went bang?)
  536. <P>Also see <A HREF="#error indicators">Error Indicators</A>.</P>
  537. <P></P>
  538. <DT><STRONG><A NAME="item_%24EXTENDED_OS_ERROR">$EXTENDED_OS_ERROR</A></STRONG><BR>
  539. <DD>
  540. <DT><STRONG><A NAME="item_%24%5EE">$^E</A></STRONG><BR>
  541. <DD>
  542. Error information specific to the current operating system.  At
  543. the moment, this differs from <A HREF="#item_%24%21"><CODE>$!</CODE></A> under only VMS, OS/2, and Win32
  544. (and for MacPerl).  On all other platforms, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A> is always just
  545. the same as <A HREF="#item_%24%21"><CODE>$!</CODE></A>.
  546. <P>Under VMS, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A> provides the VMS status value from the last
  547. system error.  This is more specific information about the last
  548. system error than that provided by <A HREF="#item_%24%21"><CODE>$!</CODE></A>.  This is particularly
  549. important when <A HREF="#item_%24%21"><CODE>$!</CODE></A> is set to <STRONG>EVMSERR</STRONG>.</P>
  550. <P>Under OS/2, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A> is set to the error code of the last call to
  551. OS/2 API either via CRT, or directly from perl.</P>
  552. <P>Under Win32, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A> always returns the last error information
  553. reported by the Win32 call <CODE>GetLastError()</CODE> which describes
  554. the last error from within the Win32 API.  Most Win32-specific
  555. code will report errors via <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>.  ANSI C and Unix-like calls
  556. set <CODE>errno</CODE> and so most portable Perl code will report errors
  557. via <A HREF="#item_%24%21"><CODE>$!</CODE></A>.</P>
  558. <P>Caveats mentioned in the description of <A HREF="#item_%24%21"><CODE>$!</CODE></A> generally apply to
  559. <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>, also.  (Mnemonic: Extra error explanation.)</P>
  560. <P>Also see <A HREF="#error indicators">Error Indicators</A>.</P>
  561. <P></P>
  562. <DT><STRONG><A NAME="item_%24EVAL_ERROR">$EVAL_ERROR</A></STRONG><BR>
  563. <DD>
  564. <DT><STRONG><A NAME="item_%24%40">$@</A></STRONG><BR>
  565. <DD>
  566. The Perl syntax error message from the last <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> operator.  If null, the
  567. last <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> parsed and executed correctly (although the operations you
  568. invoked may have failed in the normal fashion).  (Mnemonic: Where was
  569. the syntax error ``at''?)
  570. <P>Warning messages are not collected in this variable.  You can,
  571. however, set up a routine to process warnings by setting <CODE>$SIG{__WARN__}</CODE>
  572. as described below.</P>
  573. <P>Also see <A HREF="#error indicators">Error Indicators</A>.</P>
  574. <P></P>
  575. <DT><STRONG><A NAME="item_%24PROCESS_ID">$PROCESS_ID</A></STRONG><BR>
  576. <DD>
  577. <DT><STRONG><A NAME="item_%24PID">$PID</A></STRONG><BR>
  578. <DD>
  579. <DT><STRONG><A NAME="item_%24%24">$$</A></STRONG><BR>
  580. <DD>
  581. The process number of the Perl running this script.  You should
  582. consider this variable read-only, although it will be altered
  583. across <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> calls.  (Mnemonic: same as shells.)
  584. <P></P>
  585. <DT><STRONG><A NAME="item_%24REAL_USER_ID">$REAL_USER_ID</A></STRONG><BR>
  586. <DD>
  587. <DT><STRONG><A NAME="item_%24UID">$UID</A></STRONG><BR>
  588. <DD>
  589. <DT><STRONG><A NAME="item_%24%3C">$<</A></STRONG><BR>
  590. <DD>
  591. The real uid of this process.  (Mnemonic: it's the uid you came <EM>from</EM>,
  592. if you're running setuid.)
  593. <P></P>
  594. <DT><STRONG><A NAME="item_%24EFFECTIVE_USER_ID">$EFFECTIVE_USER_ID</A></STRONG><BR>
  595. <DD>
  596. <DT><STRONG><A NAME="item_%24EUID">$EUID</A></STRONG><BR>
  597. <DD>
  598. <DT><STRONG><A NAME="item_%24%3E">$></A></STRONG><BR>
  599. <DD>
  600. The effective uid of this process.  Example:
  601. <PRE>
  602.     $< = $>;            # set real to effective uid
  603.     ($<,$>) = ($>,$<);  # swap real and effective uid</PRE>
  604. <P>(Mnemonic: it's the uid you went <EM>to</EM>, if you're running setuid.)
  605. <A HREF="#item_%24%3C"><CODE>$<</CODE></A> and <A HREF="#item_%24%3E"><CODE>$></CODE></A> can be swapped only on machines
  606. supporting setreuid().</P>
  607. <P></P>
  608. <DT><STRONG><A NAME="item_%24REAL_GROUP_ID">$REAL_GROUP_ID</A></STRONG><BR>
  609. <DD>
  610. <DT><STRONG><A NAME="item_%24GID">$GID</A></STRONG><BR>
  611. <DD>
  612. <DT><STRONG><A NAME="item_%24%28">$(</A></STRONG><BR>
  613. <DD>
  614. The real gid of this process.  If you are on a machine that supports
  615. membership in multiple groups simultaneously, gives a space separated
  616. list of groups you are in.  The first number is the one returned by
  617. getgid(), and the subsequent ones by getgroups(), one of which may be
  618. the same as the first number.
  619. <P>However, a value assigned to <A HREF="#item_%24%28"><CODE>$(</CODE></A> must be a single number used to
  620. set the real gid.  So the value given by <A HREF="#item_%24%28"><CODE>$(</CODE></A> should <EM>not</EM> be assigned
  621. back to <A HREF="#item_%24%28"><CODE>$(</CODE></A> without being forced numeric, such as by adding zero.</P>
  622. <P>(Mnemonic: parentheses are used to <EM>group</EM> things.  The real gid is the
  623. group you <EM>left</EM>, if you're running setgid.)</P>
  624. <P></P>
  625. <DT><STRONG><A NAME="item_%24EFFECTIVE_GROUP_ID">$EFFECTIVE_GROUP_ID</A></STRONG><BR>
  626. <DD>
  627. <DT><STRONG><A NAME="item_%24EGID">$EGID</A></STRONG><BR>
  628. <DD>
  629. <DT><STRONG><A NAME="item_%24%29">$)</A></STRONG><BR>
  630. <DD>
  631. The effective gid of this process.  If you are on a machine that
  632. supports membership in multiple groups simultaneously, gives a space
  633. separated list of groups you are in.  The first number is the one
  634. returned by getegid(), and the subsequent ones by getgroups(), one of
  635. which may be the same as the first number.
  636. <P>Similarly, a value assigned to <A HREF="#item_%24%29"><CODE>$)</CODE></A> must also be a space-separated
  637. list of numbers.  The first number sets the effective gid, and
  638. the rest (if any) are passed to setgroups().  To get the effect of an
  639. empty list for setgroups(), just repeat the new effective gid; that is,
  640. to force an effective gid of 5 and an effectively empty <CODE>setgroups()</CODE>
  641. list, say <CODE> $) = "5 5" </CODE>.</P>
  642. <P>(Mnemonic: parentheses are used to <EM>group</EM> things.  The effective gid
  643. is the group that's <EM>right</EM> for you, if you're running setgid.)</P>
  644. <P><A HREF="#item_%24%3C"><CODE>$<</CODE></A>, <A HREF="#item_%24%3E"><CODE>$></CODE></A>, <A HREF="#item_%24%28"><CODE>$(</CODE></A> and <A HREF="#item_%24%29"><CODE>$)</CODE></A> can be set only on
  645. machines that support the corresponding <EM>set[re][ug]id()</EM> routine.  <A HREF="#item_%24%28"><CODE>$(</CODE></A>
  646. and <A HREF="#item_%24%29"><CODE>$)</CODE></A> can be swapped only on machines supporting setregid().</P>
  647. <P></P>
  648. <DT><STRONG><A NAME="item_%24PROGRAM_NAME">$PROGRAM_NAME</A></STRONG><BR>
  649. <DD>
  650. <DT><STRONG><A NAME="item_%240">$0</A></STRONG><BR>
  651. <DD>
  652. Contains the name of the program being executed.  On some operating
  653. systems assigning to <A HREF="#item_%240"><CODE>$0</CODE></A> modifies the argument area that the <STRONG>ps</STRONG>
  654. program sees.  This is more useful as a way of indicating the current
  655. program state than it is for hiding the program you're running.
  656. (Mnemonic: same as <STRONG>sh</STRONG> and <STRONG>ksh</STRONG>.)
  657. <P></P>
  658. <DT><STRONG><A NAME="item_%24%5B">$[</A></STRONG><BR>
  659. <DD>
  660. The index of the first element in an array, and of the first character
  661. in a substring.  Default is 0, but you could theoretically set it
  662. to 1 to make Perl behave more like <STRONG>awk</STRONG> (or Fortran) when
  663. subscripting and when evaluating the <A HREF="../../lib/Pod/perlfunc.html#item_index"><CODE>index()</CODE></A> and <A HREF="#item_substr"><CODE>substr()</CODE></A> functions.
  664. (Mnemonic: [ begins subscripts.)
  665. <P>As of release 5 of Perl, assignment to <A HREF="#item_%24%5B"><CODE>$[</CODE></A> is treated as a compiler
  666. directive, and cannot influence the behavior of any other file.
  667. Its use is highly discouraged.</P>
  668. <P></P>
  669. <DT><STRONG><A NAME="item_%24%5D">$]</A></STRONG><BR>
  670. <DD>
  671. The version + patchlevel / 1000 of the Perl interpreter.  This variable
  672. can be used to determine whether the Perl interpreter executing a
  673. script is in the right range of versions.  (Mnemonic: Is this version
  674. of perl in the right bracket?)  Example:
  675. <PRE>
  676.     warn "No checksumming!\n" if $] < 3.019;</PRE>
  677. <P>See also the documentation of <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use VERSION</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require VERSION</CODE></A>
  678. for a convenient way to fail if the running Perl interpreter is too old.</P>
  679. <P>The use of this variable is deprecated.  The floating point representation
  680. can sometimes lead to inaccurate numeric comparisons.  See <A HREF="#item_%24%5EV"><CODE>$^V</CODE></A> for a
  681. more modern representation of the Perl version that allows accurate string
  682. comparisons.</P>
  683. <P></P>
  684. <DT><STRONG><A NAME="item_%24COMPILING">$COMPILING</A></STRONG><BR>
  685. <DD>
  686. <DT><STRONG><A NAME="item_%24%5EC">$^C</A></STRONG><BR>
  687. <DD>
  688. The current value of the flag associated with the <STRONG>-c</STRONG> switch.
  689. Mainly of use with <STRONG>-MO=...</STRONG> to allow code to alter its behavior
  690. when being compiled, such as for example to AUTOLOAD at compile
  691. time rather than normal, deferred loading.  See <EM>perlcc</EM>.  Setting
  692. <CODE>$^C = 1</CODE> is similar to calling <CODE>B::minus_c</CODE>.
  693. <P></P>
  694. <DT><STRONG><A NAME="item_%24DEBUGGING">$DEBUGGING</A></STRONG><BR>
  695. <DD>
  696. <DT><STRONG><A NAME="item_%24%5ED">$^D</A></STRONG><BR>
  697. <DD>
  698. The current value of the debugging flags.  (Mnemonic: value of <STRONG>-D</STRONG>
  699. switch.)
  700. <P></P>
  701. <DT><STRONG><A NAME="item_%24SYSTEM_FD_MAX">$SYSTEM_FD_MAX</A></STRONG><BR>
  702. <DD>
  703. <DT><STRONG><A NAME="item_%24%5EF">$^F</A></STRONG><BR>
  704. <DD>
  705. The maximum system file descriptor, ordinarily 2.  System file
  706. descriptors are passed to exec()ed processes, while higher file
  707. descriptors are not.  Also, during an open(), system file descriptors are
  708. preserved even if the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> fails.  (Ordinary file descriptors are
  709. closed before the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> is attempted.)  The close-on-exec
  710. status of a file descriptor will be decided according to the value of
  711. <A HREF="#item_%24%5EF"><CODE>$^F</CODE></A> when the corresponding file, pipe, or socket was opened, not the
  712. time of the exec().
  713. <P></P>
  714. <DT><STRONG><A NAME="item_%24%5EH">$^H</A></STRONG><BR>
  715. <DD>
  716. WARNING: This variable is strictly for internal use only.  Its availability,
  717. behavior, and contents are subject to change without notice.
  718. <P>This variable contains compile-time hints for the Perl interpreter.  At the
  719. end of compilation of a BLOCK the value of this variable is restored to the
  720. value when the interpreter started to compile the BLOCK.</P>
  721. <P>When perl begins to parse any block construct that provides a lexical scope
  722. (e.g., eval body, required file, subroutine body, loop body, or conditional
  723. block), the existing value of $^H is saved, but its value is left unchanged.
  724. When the compilation of the block is completed, it regains the saved value.
  725. Between the points where its value is saved and restored, code that
  726. executes within BEGIN blocks is free to change the value of $^H.</P>
  727. <P>This behavior provides the semantic of lexical scoping, and is used in,
  728. for instance, the <CODE>use strict</CODE> pragma.</P>
  729. <P>The contents should be an integer; different bits of it are used for
  730. different pragmatic flags.  Here's an example:</P>
  731. <PRE>
  732.     sub add_100 { $^H |= 0x100 }</PRE>
  733. <PRE>
  734.     sub foo {
  735.         BEGIN { add_100() }
  736.         bar->baz($boon);
  737.     }</PRE>
  738. <P>Consider what happens during execution of the BEGIN block.  At this point
  739. the BEGIN block has already been compiled, but the body of <CODE>foo()</CODE> is still
  740. being compiled.  The new value of $^H will therefore be visible only while
  741. the body of <CODE>foo()</CODE> is being compiled.</P>
  742. <P>Substitution of the above BEGIN block with:</P>
  743. <PRE>
  744.     BEGIN { require strict; strict->import('vars') }</PRE>
  745. <P>demonstrates how <CODE>use strict 'vars'</CODE> is implemented.  Here's a conditional
  746. version of the same lexical pragma:</P>
  747. <PRE>
  748.     BEGIN { require strict; strict->import('vars') if $condition }</PRE>
  749. <P></P>
  750. <DT><STRONG><A NAME="item_%^H">%^H</A></STRONG><BR>
  751. <DD>
  752. WARNING: This variable is strictly for internal use only.  Its availability,
  753. behavior, and contents are subject to change without notice.
  754. <P>The %^H hash provides the same scoping semantic as $^H.  This makes it
  755. useful for implementation of lexically scoped pragmas.</P>
  756. <P></P>
  757. <DT><STRONG><A NAME="item_%24INPLACE_EDIT">$INPLACE_EDIT</A></STRONG><BR>
  758. <DD>
  759. <DT><STRONG><A NAME="item_%24%5EI">$^I</A></STRONG><BR>
  760. <DD>
  761. The current value of the inplace-edit extension.  Use <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> to disable
  762. inplace editing.  (Mnemonic: value of <STRONG>-i</STRONG> switch.)
  763. <P></P>
  764. <DT><STRONG><A NAME="item_%24%5EM">$^M</A></STRONG><BR>
  765. <DD>
  766. By default, running out of memory is an untrappable, fatal error.
  767. However, if suitably built, Perl can use the contents of <A HREF="#item_%24%5EM"><CODE>$^M</CODE></A>
  768. as an emergency memory pool after die()ing.  Suppose that your Perl
  769. were compiled with -DPERL_EMERGENCY_SBRK and used Perl's malloc.
  770. Then
  771. <PRE>
  772.     $^M = 'a' x (1 << 16);</PRE>
  773. <P>would allocate a 64K buffer for use when in emergency.  See the
  774. <EM>INSTALL</EM> file in the Perl distribution for information on how to
  775. enable this option.  To discourage casual use of this advanced
  776. feature, there is no <A HREF="../../lib/English.html">the English manpage</A> long name for this variable.</P>
  777. <P></P>
  778. <DT><STRONG><A NAME="item_%24OSNAME">$OSNAME</A></STRONG><BR>
  779. <DD>
  780. <DT><STRONG><A NAME="item_%24%5EO">$^O</A></STRONG><BR>
  781. <DD>
  782. The name of the operating system under which this copy of Perl was
  783. built, as determined during the configuration process.  The value
  784. is identical to <CODE>$Config{'osname'}</CODE>.  See also <A HREF="../../lib/Config.html">the Config manpage</A> and the 
  785. <STRONG>-V</STRONG> command-line switch documented in <A HREF="../../lib/Pod/perlrun.html">the perlrun manpage</A>.
  786. <P></P>
  787. <DT><STRONG><A NAME="item_%24PERLDB">$PERLDB</A></STRONG><BR>
  788. <DD>
  789. <DT><STRONG><A NAME="item_%24%5EP">$^P</A></STRONG><BR>
  790. <DD>
  791. The internal variable for debugging support.  The meanings of the
  792. various bits are subject to change, but currently indicate:
  793. <OL>
  794. <LI><STRONG><A NAME="item_x01">x01</A></STRONG><BR>
  795.  
  796. Debug subroutine enter/exit.
  797. <P></P>
  798. <LI><STRONG><A NAME="item_x02">x02</A></STRONG><BR>
  799.  
  800. Line-by-line debugging.
  801. <P></P>
  802. <LI><STRONG><A NAME="item_x04">x04</A></STRONG><BR>
  803.  
  804. Switch off optimizations.
  805. <P></P>
  806. <LI><STRONG><A NAME="item_x08">x08</A></STRONG><BR>
  807.  
  808. Preserve more data for future interactive inspections.
  809. <P></P>
  810. <LI><STRONG><A NAME="item_x10">x10</A></STRONG><BR>
  811.  
  812. Keep info about source lines on which a subroutine is defined.
  813. <P></P>
  814. <LI><STRONG><A NAME="item_x20">x20</A></STRONG><BR>
  815.  
  816. Start with single-step on.
  817. <P></P>
  818. <LI><STRONG><A NAME="item_x40">x40</A></STRONG><BR>
  819.  
  820. Use subroutine address instead of name when reporting.
  821. <P></P>
  822. <LI><STRONG><A NAME="item_x80">x80</A></STRONG><BR>
  823.  
  824. Report <CODE>goto &subroutine</CODE> as well.
  825. <P></P>
  826. <LI><STRONG><A NAME="item_x100">x100</A></STRONG><BR>
  827.  
  828. Provide informative ``file'' names for evals based on the place they were compiled.
  829. <P></P>
  830. <LI><STRONG><A NAME="item_x200">x200</A></STRONG><BR>
  831.  
  832. Provide informative names to anonymous subroutines based on the place they
  833. were compiled.
  834. <P></P></OL>
  835. <P>Some bits may be relevant at compile-time only, some at
  836. run-time only.  This is a new mechanism and the details may change.</P>
  837. <DT><STRONG><A NAME="item_%24LAST_REGEXP_CODE_RESULT">$LAST_REGEXP_CODE_RESULT</A></STRONG><BR>
  838. <DD>
  839. <DT><STRONG><A NAME="item_%24%5ER">$^R</A></STRONG><BR>
  840. <DD>
  841. The result of evaluation of the last successful <CODE>(?{ code })</CODE>
  842. regular expression assertion (see <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>).  May be written to.
  843. <P></P>
  844. <DT><STRONG><A NAME="item_%24EXCEPTIONS_BEING_CAUGHT">$EXCEPTIONS_BEING_CAUGHT</A></STRONG><BR>
  845. <DD>
  846. <DT><STRONG><A NAME="item_%24%5ES">$^S</A></STRONG><BR>
  847. <DD>
  848. Current state of the interpreter.  Undefined if parsing of the current
  849. module/eval is not finished (may happen in $SIG{__DIE__} and
  850. $SIG{__WARN__} handlers).  True if inside an eval(), otherwise false.
  851. <P></P>
  852. <DT><STRONG><A NAME="item_%24BASETIME">$BASETIME</A></STRONG><BR>
  853. <DD>
  854. <DT><STRONG><A NAME="item_%24%5ET">$^T</A></STRONG><BR>
  855. <DD>
  856. The time at which the program began running, in seconds since the
  857. epoch (beginning of 1970).  The values returned by the <STRONG>-M</STRONG>, <STRONG>-A</STRONG>,
  858. and <STRONG>-C</STRONG> filetests are based on this value.
  859. <P></P>
  860. <DT><STRONG><A NAME="item_%24PERL_VERSION">$PERL_VERSION</A></STRONG><BR>
  861. <DD>
  862. <DT><STRONG><A NAME="item_%24%5EV">$^V</A></STRONG><BR>
  863. <DD>
  864. The revision, version, and subversion of the Perl interpreter, represented
  865. as a string composed of characters with those ordinals.  Thus in Perl v5.6.0
  866. it equals <A HREF="../../lib/Pod/perlfunc.html#item_chr"><CODE>chr(5) . chr(6) . chr(0)</CODE></A> and will return true for
  867. <CODE>$^V eq v5.6.0</CODE>.  Note that the characters in this string value can
  868. potentially be in Unicode range.
  869. <P>This can be used to determine whether the Perl interpreter executing a
  870. script is in the right range of versions.  (Mnemonic: use ^V for Version
  871. Control.)  Example:</P>
  872. <PRE>
  873.     warn "No "our" declarations!\n" if $^V and $^V lt v5.6.0;</PRE>
  874. <P>See the documentation of <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use VERSION</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require VERSION</CODE></A>
  875. for a convenient way to fail if the running Perl interpreter is too old.</P>
  876. <P>See also <A HREF="#item_%24%5D"><CODE>$]</CODE></A> for an older representation of the Perl version.</P>
  877. <P></P>
  878. <DT><STRONG><A NAME="item_%24WARNING">$WARNING</A></STRONG><BR>
  879. <DD>
  880. <DT><STRONG><A NAME="item_%24%5EW">$^W</A></STRONG><BR>
  881. <DD>
  882. The current value of the warning switch, initially true if <STRONG>-w</STRONG>
  883. was used, false otherwise, but directly modifiable.  (Mnemonic:
  884. related to the <STRONG>-w</STRONG> switch.)  See also <A HREF="../../lib/warnings.html">the warnings manpage</A>.
  885. <P></P>
  886. <DT><STRONG><A NAME="item_%24%7B%5EWARNING_BITS%7D">${^WARNING_BITS}</A></STRONG><BR>
  887. <DD>
  888. The current set of warning checks enabled by the <CODE>use warnings</CODE> pragma.
  889. See the documentation of <CODE>warnings</CODE> for more details.
  890. <P></P>
  891. <DT><STRONG><A NAME="item_%24%7B%5EWIDE_SYSTEM_CALLS%7D">${^WIDE_SYSTEM_CALLS}</A></STRONG><BR>
  892. <DD>
  893. Global flag that enables system calls made by Perl to use wide character
  894. APIs native to the system, if available.  This is currently only implemented
  895. on the Windows platform.
  896. <P>This can also be enabled from the command line using the <CODE>-C</CODE> switch.</P>
  897. <P>The initial value is typically <CODE>0</CODE> for compatibility with Perl versions
  898. earlier than 5.6, but may be automatically set to <CODE>1</CODE> by Perl if the system
  899. provides a user-settable default (e.g., <CODE>$ENV{LC_CTYPE}</CODE>).</P>
  900. <P>The <CODE>bytes</CODE> pragma always overrides the effect of this flag in the current
  901. lexical scope.  See <A HREF="../../lib/bytes.html">the bytes manpage</A>.</P>
  902. <P></P>
  903. <DT><STRONG><A NAME="item_%24EXECUTABLE_NAME">$EXECUTABLE_NAME</A></STRONG><BR>
  904. <DD>
  905. <DT><STRONG><A NAME="item_%24%5EX">$^X</A></STRONG><BR>
  906. <DD>
  907. The name that the Perl binary itself was executed as, from C's <CODE>argv[0]</CODE>.
  908. This may not be a full pathname, nor even necessarily in your path.
  909. <P></P>
  910. <DT><STRONG><A NAME="item_%24ARGV">$ARGV</A></STRONG><BR>
  911. <DD>
  912. contains the name of the current file when reading from <>.
  913. <P></P>
  914. <DT><STRONG><A NAME="item_%40ARGV">@ARGV</A></STRONG><BR>
  915. <DD>
  916. The array @ARGV contains the command-line arguments intended for
  917. the script.  <CODE>$#ARGV</CODE> is generally the number of arguments minus
  918. one, because <CODE>$ARGV[0]</CODE> is the first argument, <EM>not</EM> the program's
  919. command name itself.  See <A HREF="#item_%240"><CODE>$0</CODE></A> for the command name.
  920. <P></P>
  921. <DT><STRONG><A NAME="item_%40INC">@INC</A></STRONG><BR>
  922. <DD>
  923. The array @INC contains the list of places that the <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do EXPR</CODE></A>,
  924. <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> constructs look for their library files.  It
  925. initially consists of the arguments to any <STRONG>-I</STRONG> command-line
  926. switches, followed by the default Perl library, probably
  927. <EM>/usr/local/lib/perl</EM>, followed by ``.'', to represent the current
  928. directory.  If you need to modify this at runtime, you should use
  929. the <CODE>use lib</CODE> pragma to get the machine-dependent library properly
  930. loaded also:
  931. <PRE>
  932.     use lib '/mypath/libdir/';
  933.     use SomeMod;</PRE>
  934. <P></P>
  935. <DT><STRONG><A NAME="item_%40_">@_</A></STRONG><BR>
  936. <DD>
  937. Within a subroutine the array @_ contains the parameters passed to that
  938. subroutine.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>.
  939. <P></P>
  940. <DT><STRONG><A NAME="item_%INC">%INC</A></STRONG><BR>
  941. <DD>
  942. The hash %INC contains entries for each filename included via the
  943. <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> operators.  The key is the filename
  944. you specified (with module names converted to pathnames), and the
  945. value is the location of the file found.  The <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>
  946. operator uses this hash to determine whether a particular file has
  947. already been included.
  948. <P></P>
  949. <DT><STRONG><A NAME="item_%ENV">%ENV</A></STRONG><BR>
  950. <DD>
  951. <DT><STRONG><A NAME="item_%24ENV%7Bexpr%7D">$ENV{expr}</A></STRONG><BR>
  952. <DD>
  953. The hash %ENV contains your current environment.  Setting a
  954. value in <CODE>ENV</CODE> changes the environment for any child processes
  955. you subsequently <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> off.
  956. <P></P>
  957. <DT><STRONG><A NAME="item_%SIG">%SIG</A></STRONG><BR>
  958. <DD>
  959. <DT><STRONG><A NAME="item_%24SIG%7Bexpr%7D">$SIG{expr}</A></STRONG><BR>
  960. <DD>
  961. The hash %SIG contains signal handlers for signals.  For example:
  962. <PRE>
  963.     sub handler {       # 1st argument is signal name
  964.         my($sig) = @_;
  965.         print "Caught a SIG$sig--shutting down\n";
  966.         close(LOG);
  967.         exit(0);
  968.     }</PRE>
  969. <PRE>
  970.     $SIG{'INT'}  = \&handler;
  971.     $SIG{'QUIT'} = \&handler;
  972.     ...
  973.     $SIG{'INT'}  = 'DEFAULT';   # restore default action
  974.     $SIG{'QUIT'} = 'IGNORE';    # ignore SIGQUIT</PRE>
  975. <P>Using a value of <CODE>'IGNORE'</CODE> usually has the effect of ignoring the
  976. signal, except for the <CODE>CHLD</CODE> signal.  See <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A> for more about
  977. this special case.</P>
  978. <P>Here are some other examples:</P>
  979. <PRE>
  980.     $SIG{"PIPE"} = "Plumber";   # assumes main::Plumber (not recommended)
  981.     $SIG{"PIPE"} = \&Plumber;   # just fine; assume current Plumber
  982.     $SIG{"PIPE"} = *Plumber;    # somewhat esoteric
  983.     $SIG{"PIPE"} = Plumber();   # oops, what did Plumber() return??</PRE>
  984. <P>Be sure not to use a bareword as the name of a signal handler,
  985. lest you inadvertently call it.</P>
  986. <P>If your system has the <CODE>sigaction()</CODE> function then signal handlers are
  987. installed using it.  This means you get reliable signal handling.  If
  988. your system has the SA_RESTART flag it is used when signals handlers are
  989. installed.  This means that system calls for which restarting is supported
  990. continue rather than returning when a signal arrives.  If you want your
  991. system calls to be interrupted by signal delivery then do something like
  992. this:</P>
  993. <PRE>
  994.     use POSIX ':signal_h';</PRE>
  995. <PRE>
  996.     my $alarm = 0;
  997.     sigaction SIGALRM, new POSIX::SigAction sub { $alarm = 1 }
  998.         or die "Error setting SIGALRM handler: $!\n";</PRE>
  999. <P>See <A HREF="../../lib/POSIX.html">the POSIX manpage</A>.</P>
  1000. <P>Certain internal hooks can be also set using the %SIG hash.  The
  1001. routine indicated by <CODE>$SIG{__WARN__}</CODE> is called when a warning message is
  1002. about to be printed.  The warning message is passed as the first
  1003. argument.  The presence of a __WARN__ hook causes the ordinary printing
  1004. of warnings to STDERR to be suppressed.  You can use this to save warnings
  1005. in a variable, or turn warnings into fatal errors, like this:</P>
  1006. <PRE>
  1007.     local $SIG{__WARN__} = sub { die $_[0] };
  1008.     eval $proggie;</PRE>
  1009. <P>The routine indicated by <CODE>$SIG{__DIE__}</CODE> is called when a fatal exception
  1010. is about to be thrown.  The error message is passed as the first
  1011. argument.  When a __DIE__ hook routine returns, the exception
  1012. processing continues as it would have in the absence of the hook,
  1013. unless the hook routine itself exits via a <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>, a loop exit, or a die().
  1014. The <CODE>__DIE__</CODE> handler is explicitly disabled during the call, so that you
  1015. can die from a <CODE>__DIE__</CODE> handler.  Similarly for <CODE>__WARN__</CODE>.</P>
  1016. <P>Due to an implementation glitch, the <CODE>$SIG{__DIE__}</CODE> hook is called
  1017. even inside an eval().  Do not use this to rewrite a pending exception
  1018. in <A HREF="#item_%24%40"><CODE>$@</CODE></A>, or as a bizarre substitute for overriding CORE::GLOBAL::die().
  1019. This strange action at a distance may be fixed in a future release
  1020. so that <CODE>$SIG{__DIE__}</CODE> is only called if your program is about
  1021. to exit, as was the original intent.  Any other use is deprecated.</P>
  1022. <P><CODE>__DIE__</CODE>/<CODE>__WARN__</CODE> handlers are very special in one respect:
  1023. they may be called to report (probable) errors found by the parser.
  1024. In such a case the parser may be in inconsistent state, so any
  1025. attempt to evaluate Perl code from such a handler will probably
  1026. result in a segfault.  This means that warnings or errors that
  1027. result from parsing Perl should be used with extreme caution, like
  1028. this:</P>
  1029. <PRE>
  1030.     require Carp if defined $^S;
  1031.     Carp::confess("Something wrong") if defined &Carp::confess;
  1032.     die "Something wrong, but could not load Carp to give backtrace...
  1033.          To see backtrace try starting Perl with -MCarp switch";</PRE>
  1034. <P>Here the first line will load Carp <EM>unless</EM> it is the parser who
  1035. called the handler.  The second line will print backtrace and die if
  1036. Carp was available.  The third line will be executed only if Carp was
  1037. not available.</P>
  1038. <P>See <A HREF="../../lib/Pod/perlfunc.html#die">die in the perlfunc manpage</A>, <A HREF="../../lib/Pod/perlfunc.html#warn">warn in the perlfunc manpage</A>, <A HREF="../../lib/Pod/perlfunc.html#eval">eval in the perlfunc manpage</A>, and
  1039. <A HREF="../../lib/warnings.html">the warnings manpage</A> for additional information.</P>
  1040. <P></P></DL>
  1041. <P>
  1042. <H2><A NAME="error indicators">Error Indicators</A></H2>
  1043. <P>The variables <A HREF="#item_%24%40"><CODE>$@</CODE></A>, <A HREF="#item_%24%21"><CODE>$!</CODE></A>, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>, and <A HREF="#item_%24%3F"><CODE>$?</CODE></A> contain information
  1044. about different types of error conditions that may appear during
  1045. execution of a Perl program.  The variables are shown ordered by
  1046. the ``distance'' between the subsystem which reported the error and
  1047. the Perl process.  They correspond to errors detected by the Perl
  1048. interpreter, C library, operating system, or an external program,
  1049. respectively.</P>
  1050. <P>To illustrate the differences between these variables, consider the 
  1051. following Perl expression, which uses a single-quoted string:</P>
  1052. <PRE>
  1053.     eval q{
  1054.         open PIPE, "/cdrom/install |";
  1055.         @res = <PIPE>;
  1056.         close PIPE or die "bad pipe: $?, $!";
  1057.     };</PRE>
  1058. <P>After execution of this statement all 4 variables may have been set.</P>
  1059. <P><A HREF="#item_%24%40"><CODE>$@</CODE></A> is set if the string to be <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>-ed did not compile (this
  1060. may happen if <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A> were imported with bad prototypes),
  1061. or if Perl code executed during evaluation die()d .  In these cases
  1062. the value of $@ is the compile error, or the argument to <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A>
  1063. (which will interpolate <A HREF="#item_%24%21"><CODE>$!</CODE></A> and <A HREF="#item_%24%3F"><CODE>$?</CODE></A>!).  (See also <A HREF="../../lib/Fatal.html">the Fatal manpage</A>,
  1064. though.)</P>
  1065. <P>When the <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> expression above is executed, open(), <CODE><PIPE></CODE>,
  1066. and <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A> are translated to calls in the C run-time library and
  1067. thence to the operating system kernel.  <A HREF="#item_%24%21"><CODE>$!</CODE></A> is set to the C library's
  1068. <CODE>errno</CODE> if one of these calls fails.</P>
  1069. <P>Under a few operating systems, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A> may contain a more verbose
  1070. error indicator, such as in this case, ``CDROM tray not closed.''
  1071. Systems that do not support extended error messages leave <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>
  1072. the same as <A HREF="#item_%24%21"><CODE>$!</CODE></A>.</P>
  1073. <P>Finally, <A HREF="#item_%24%3F"><CODE>$?</CODE></A> may be set to non-0 value if the external program
  1074. <EM>/cdrom/install</EM> fails.  The upper eight bits reflect specific
  1075. error conditions encountered by the program (the program's <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit()</CODE></A>
  1076. value).   The lower eight bits reflect mode of failure, like signal
  1077. death and core dump information  See <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait(2)</CODE></A> for details.  In
  1078. contrast to <A HREF="#item_%24%21"><CODE>$!</CODE></A> and <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>, which are set only if error condition
  1079. is detected, the variable <A HREF="#item_%24%3F"><CODE>$?</CODE></A> is set on each <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait</CODE></A> or pipe
  1080. <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A>, overwriting the old value.  This is more like <A HREF="#item_%24%40"><CODE>$@</CODE></A>, which
  1081. on every <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> is always set on failure and cleared on success.</P>
  1082. <P>For more details, see the individual descriptions at <A HREF="#item_%24%40"><CODE>$@</CODE></A>, <A HREF="#item_%24%21"><CODE>$!</CODE></A>, <A HREF="#item_%24%5EE"><CODE>$^E</CODE></A>,
  1083. and <A HREF="#item_%24%3F"><CODE>$?</CODE></A>.</P>
  1084. <P>
  1085. <H2><A NAME="technical note on the syntax of variable names">Technical Note on the Syntax of Variable Names</A></H2>
  1086. <P>Variable names in Perl can have several formats.  Usually, they
  1087. must begin with a letter or underscore, in which case they can be
  1088. arbitrarily long (up to an internal limit of 251 characters) and
  1089. may contain letters, digits, underscores, or the special sequence
  1090. <CODE>::</CODE> or <CODE>'</CODE>.  In this case, the part before the last <CODE>::</CODE> or
  1091. <CODE>'</CODE> is taken to be a <EM>package qualifier</EM>; see <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>.</P>
  1092. <P>Perl variable names may also be a sequence of digits or a single
  1093. punctuation or control character.  These names are all reserved for
  1094. special uses by Perl; for example, the all-digits names are used
  1095. to hold data captured by backreferences after a regular expression
  1096. match.  Perl has a special syntax for the single-control-character
  1097. names: It understands <CODE>^X</CODE> (caret <CODE>X</CODE>) to mean the control-<CODE>X</CODE>
  1098. character.  For example, the notation <A HREF="#item_%24%5EW"><CODE>$^W</CODE></A> (dollar-sign caret
  1099. <CODE>W</CODE>) is the scalar variable whose name is the single character
  1100. control-<CODE>W</CODE>.  This is better than typing a literal control-<CODE>W</CODE>
  1101. into your program.</P>
  1102. <P>Finally, new in Perl 5.6, Perl variable names may be alphanumeric
  1103. strings that begin with control characters (or better yet, a caret).
  1104. These variables must be written in the form <CODE>${^Foo}</CODE>; the braces
  1105. are not optional.  <CODE>${^Foo}</CODE> denotes the scalar variable whose
  1106. name is a control-<CODE>F</CODE> followed by two <CODE>o</CODE>'s.  These variables are
  1107. reserved for future special uses by Perl, except for the ones that
  1108. begin with <CODE>^_</CODE> (control-underscore or caret-underscore).  No
  1109. control-character name that begins with <CODE>^_</CODE> will acquire a special
  1110. meaning in any future version of Perl; such names may therefore be
  1111. used safely in programs.  <CODE>$^_</CODE> itself, however, <EM>is</EM> reserved.</P>
  1112. <P>Perl identifiers that begin with digits, control characters, or
  1113. punctuation characters are exempt from the effects of the <A HREF="../../lib/Pod/perlfunc.html#item_package"><CODE>package</CODE></A>
  1114. declaration and are always forced to be in package <CODE>main</CODE>.  A few
  1115. other names are also exempt:</P>
  1116. <PRE>
  1117.         ENV             STDIN
  1118.         INC             STDOUT
  1119.         ARGV            STDERR
  1120.         ARGVOUT
  1121.         SIG</PRE>
  1122. <P>In particular, the new special <CODE>${^_XYZ}</CODE> variables are always taken
  1123. to be in package <CODE>main</CODE>, regardless of any <A HREF="../../lib/Pod/perlfunc.html#item_package"><CODE>package</CODE></A> declarations
  1124. presently in scope.</P>
  1125. <P>
  1126. <HR>
  1127. <H1><A NAME="bugs">BUGS</A></H1>
  1128. <P>Due to an unfortunate accident of Perl's implementation, <CODE>use
  1129. English</CODE> imposes a considerable performance penalty on all regular
  1130. expression matches in a program, regardless of whether they occur
  1131. in the scope of <CODE>use English</CODE>.  For that reason, saying <CODE>use
  1132. English</CODE> in libraries is strongly discouraged.  See the
  1133. Devel::SawAmpersand module documentation from CPAN
  1134. (http://www.perl.com/CPAN/modules/by-module/Devel/)
  1135. for more information.</P>
  1136. <P>Having to even think about the <A HREF="#item_%24%5ES"><CODE>$^S</CODE></A> variable in your exception
  1137. handlers is simply wrong.  <CODE>$SIG{__DIE__}</CODE> as currently implemented
  1138. invites grievous and difficult to track down errors.  Avoid it
  1139. and use an <CODE>END{}</CODE> or CORE::GLOBAL::die override instead.</P>
  1140. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1141. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1142. <STRONG><P CLASS=block> perlvar - Perl predefined variables</P></STRONG>
  1143. </TD></TR>
  1144. </TABLE>
  1145.  
  1146. </BODY>
  1147.  
  1148. </HTML>
  1149.