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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlfunc - Perl builtin functions</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> perlfunc - Perl builtin functions</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="#perl functions by category">Perl Functions by Category</A></LI>
  25.         <LI><A HREF="#portability">Portability</A></LI>
  26.         <LI><A HREF="#alphabetical listing of perl functions">Alphabetical Listing of Perl Functions</A></LI>
  27.     </UL>
  28.  
  29. </UL>
  30. <!-- INDEX END -->
  31.  
  32. <HR>
  33. <P>
  34. <H1><A NAME="name">NAME</A></H1>
  35. <P>perlfunc - Perl builtin functions</P>
  36. <P>
  37. <HR>
  38. <H1><A NAME="description">DESCRIPTION</A></H1>
  39. <P>The functions in this section can serve as terms in an expression.
  40. They fall into two major categories: list operators and named unary
  41. operators.  These differ in their precedence relationship with a
  42. following comma.  (See the precedence table in <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.)  List
  43. operators take more than one argument, while unary operators can never
  44. take more than one argument.  Thus, a comma terminates the argument of
  45. a unary operator, but merely separates the arguments of a list
  46. operator.  A unary operator generally provides a scalar context to its
  47. argument, while a list operator may provide either scalar or list
  48. contexts for its arguments.  If it does both, the scalar arguments will
  49. be first, and the list argument will follow.  (Note that there can ever
  50. be only one such list argument.)  For instance, <A HREF="#item_splice"><CODE>splice()</CODE></A> has three scalar
  51. arguments followed by a list, whereas <A HREF="#item_gethostbyname"><CODE>gethostbyname()</CODE></A> has four scalar
  52. arguments.</P>
  53. <P>In the syntax descriptions that follow, list operators that expect a
  54. list (and provide list context for the elements of the list) are shown
  55. with LIST as an argument.  Such a list may consist of any combination
  56. of scalar arguments or list values; the list values will be included
  57. in the list as if each individual element were interpolated at that
  58. point in the list, forming a longer single-dimensional list value.
  59. Elements of the LIST should be separated by commas.</P>
  60. <P>Any function in the list below may be used either with or without
  61. parentheses around its arguments.  (The syntax descriptions omit the
  62. parentheses.)  If you use the parentheses, the simple (but occasionally
  63. surprising) rule is this: It <EM>looks</EM> like a function, therefore it <EM>is</EM> a
  64. function, and precedence doesn't matter.  Otherwise it's a list
  65. operator or unary operator, and precedence does matter.  And whitespace
  66. between the function and left parenthesis doesn't count--so you need to
  67. be careful sometimes:</P>
  68. <PRE>
  69.     print 1+2+4;        # Prints 7.
  70.     print(1+2) + 4;     # Prints 3.
  71.     print (1+2)+4;      # Also prints 3!
  72.     print +(1+2)+4;     # Prints 7.
  73.     print ((1+2)+4);    # Prints 7.</PRE>
  74. <P>If you run Perl with the <STRONG>-w</STRONG> switch it can warn you about this.  For
  75. example, the third line above produces:</P>
  76. <PRE>
  77.     print (...) interpreted as function at - line 1.
  78.     Useless use of integer addition in void context at - line 1.</PRE>
  79. <P>A few functions take no arguments at all, and therefore work as neither
  80. unary nor list operators.  These include such functions as <A HREF="#item_time"><CODE>time</CODE></A>
  81. and <A HREF="#item_endpwent"><CODE>endpwent</CODE></A>.  For example, <CODE>time+86_400</CODE> always means
  82. <A HREF="#item_time"><CODE>time() + 86_400</CODE></A>.</P>
  83. <P>For functions that can be used in either a scalar or list context,
  84. nonabortive failure is generally indicated in a scalar context by
  85. returning the undefined value, and in a list context by returning the
  86. null list.</P>
  87. <P>Remember the following important rule: There is <STRONG>no rule</STRONG> that relates
  88. the behavior of an expression in list context to its behavior in scalar
  89. context, or vice versa.  It might do two totally different things.
  90. Each operator and function decides which sort of value it would be most
  91. appropriate to return in scalar context.  Some operators return the
  92. length of the list that would have been returned in list context.  Some
  93. operators return the first value in the list.  Some operators return the
  94. last value in the list.  Some operators return a count of successful
  95. operations.  In general, they do what you want, unless you want
  96. consistency.</P>
  97. <P>An named array in scalar context is quite different from what would at
  98. first glance appear to be a list in scalar context.  You can't get a list
  99. like <CODE>(1,2,3)</CODE> into being in scalar context, because the compiler knows
  100. the context at compile time.  It would generate the scalar comma operator
  101. there, not the list construction version of the comma.  That means it
  102. was never a list to start with.</P>
  103. <P>In general, functions in Perl that serve as wrappers for system calls
  104. of the same name (like chown(2), fork(2), closedir(2), etc.) all return
  105. true when they succeed and <A HREF="#item_undef"><CODE>undef</CODE></A> otherwise, as is usually mentioned
  106. in the descriptions below.  This is different from the C interfaces,
  107. which return <CODE>-1</CODE> on failure.  Exceptions to this rule are <A HREF="#item_wait"><CODE>wait</CODE></A>,
  108. <A HREF="#item_waitpid"><CODE>waitpid</CODE></A>, and <A HREF="#item_syscall"><CODE>syscall</CODE></A>.  System calls also set the special <CODE>$!</CODE>
  109. variable on failure.  Other functions do not, except accidentally.</P>
  110. <P>
  111. <H2><A NAME="perl functions by category">Perl Functions by Category</A></H2>
  112. <P>Here are Perl's functions (including things that look like
  113. functions, like some keywords and named operators)
  114. arranged by category.  Some functions appear in more
  115. than one place.</P>
  116. <DL>
  117. <DT><STRONG><A NAME="item_Functions_for_SCALARs_or_strings">Functions for SCALARs or strings</A></STRONG><BR>
  118. <DD>
  119. <A HREF="#item_chomp"><CODE>chomp</CODE></A>, <A HREF="#item_chop"><CODE>chop</CODE></A>, <A HREF="#item_chr"><CODE>chr</CODE></A>, <A HREF="#item_crypt"><CODE>crypt</CODE></A>, <A HREF="#item_hex"><CODE>hex</CODE></A>, <A HREF="#item_index"><CODE>index</CODE></A>, <A HREF="#item_lc"><CODE>lc</CODE></A>, <A HREF="#item_lcfirst"><CODE>lcfirst</CODE></A>,
  120. <A HREF="#item_length"><CODE>length</CODE></A>, <A HREF="#item_oct"><CODE>oct</CODE></A>, <A HREF="#item_ord"><CODE>ord</CODE></A>, <A HREF="#item_pack"><CODE>pack</CODE></A>, <A HREF="#item_q/"><CODE>q/STRING/</CODE></A>, <A HREF="#item_qq/"><CODE>qq/STRING/</CODE></A>, <A HREF="#item_reverse"><CODE>reverse</CODE></A>,
  121. <A HREF="#item_rindex"><CODE>rindex</CODE></A>, <A HREF="#item_sprintf"><CODE>sprintf</CODE></A>, <A HREF="#item_substr"><CODE>substr</CODE></A>, <A HREF="#item_tr/"><CODE>tr///</CODE></A>, <A HREF="#item_uc"><CODE>uc</CODE></A>, <A HREF="#item_ucfirst"><CODE>ucfirst</CODE></A>, <A HREF="#item_y/"><CODE>y///</CODE></A>
  122. <P></P>
  123. <DT><STRONG><A NAME="item_Regular_expressions_and_pattern_matching">Regular expressions and pattern matching</A></STRONG><BR>
  124. <DD>
  125. <A HREF="#item_m/"><CODE>m//</CODE></A>, <A HREF="#item_pos"><CODE>pos</CODE></A>, <A HREF="#item_quotemeta"><CODE>quotemeta</CODE></A>, <A HREF="#item_s/"><CODE>s///</CODE></A>, <A HREF="#item_split"><CODE>split</CODE></A>, <A HREF="#item_study"><CODE>study</CODE></A>, <A HREF="#item_qr/"><CODE>qr//</CODE></A>
  126. <P></P>
  127. <DT><STRONG><A NAME="item_Numeric_functions">Numeric functions</A></STRONG><BR>
  128. <DD>
  129. <A HREF="#item_abs"><CODE>abs</CODE></A>, <A HREF="#item_atan2"><CODE>atan2</CODE></A>, <A HREF="#item_cos"><CODE>cos</CODE></A>, <A HREF="#item_exp"><CODE>exp</CODE></A>, <A HREF="#item_hex"><CODE>hex</CODE></A>, <A HREF="#item_int"><CODE>int</CODE></A>, <A HREF="#item_log"><CODE>log</CODE></A>, <A HREF="#item_oct"><CODE>oct</CODE></A>, <A HREF="#item_rand"><CODE>rand</CODE></A>,
  130. <A HREF="#item_sin"><CODE>sin</CODE></A>, <A HREF="#item_sqrt"><CODE>sqrt</CODE></A>, <A HREF="#item_srand"><CODE>srand</CODE></A>
  131. <P></P>
  132. <DT><STRONG><A NAME="item_Functions_for_real_%40ARRAYs">Functions for real @ARRAYs</A></STRONG><BR>
  133. <DD>
  134. <A HREF="#item_pop"><CODE>pop</CODE></A>, <A HREF="#item_push"><CODE>push</CODE></A>, <A HREF="#item_shift"><CODE>shift</CODE></A>, <A HREF="#item_splice"><CODE>splice</CODE></A>, <A HREF="#item_unshift"><CODE>unshift</CODE></A>
  135. <P></P>
  136. <DT><STRONG><A NAME="item_Functions_for_list_data">Functions for list data</A></STRONG><BR>
  137. <DD>
  138. <A HREF="#item_grep"><CODE>grep</CODE></A>, <A HREF="#item_join"><CODE>join</CODE></A>, <A HREF="#item_map"><CODE>map</CODE></A>, <A HREF="#item_qw/"><CODE>qw/STRING/</CODE></A>, <A HREF="#item_reverse"><CODE>reverse</CODE></A>, <A HREF="#item_sort"><CODE>sort</CODE></A>, <A HREF="#item_unpack"><CODE>unpack</CODE></A>
  139. <P></P>
  140. <DT><STRONG><A NAME="item_Functions_for_real_%25HASHes">Functions for real %HASHes</A></STRONG><BR>
  141. <DD>
  142. <A HREF="#item_delete"><CODE>delete</CODE></A>, <A HREF="#item_each"><CODE>each</CODE></A>, <A HREF="#item_exists"><CODE>exists</CODE></A>, <A HREF="#item_keys"><CODE>keys</CODE></A>, <A HREF="#item_values"><CODE>values</CODE></A>
  143. <P></P>
  144. <DT><STRONG><A NAME="item_Input_and_output_functions">Input and output functions</A></STRONG><BR>
  145. <DD>
  146. <A HREF="#item_binmode"><CODE>binmode</CODE></A>, <A HREF="#item_close"><CODE>close</CODE></A>, <A HREF="#item_closedir"><CODE>closedir</CODE></A>, <A HREF="#item_dbmclose"><CODE>dbmclose</CODE></A>, <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A>, <A HREF="#item_die"><CODE>die</CODE></A>, <A HREF="#item_eof"><CODE>eof</CODE></A>,
  147. <A HREF="#item_fileno"><CODE>fileno</CODE></A>, <A HREF="#item_flock"><CODE>flock</CODE></A>, <A HREF="#item_format"><CODE>format</CODE></A>, <A HREF="#item_getc"><CODE>getc</CODE></A>, <A HREF="#item_print"><CODE>print</CODE></A>, <A HREF="#item_printf"><CODE>printf</CODE></A>, <A HREF="#item_read"><CODE>read</CODE></A>,
  148. <A HREF="#item_readdir"><CODE>readdir</CODE></A>, <A HREF="#item_rewinddir"><CODE>rewinddir</CODE></A>, <A HREF="#item_seek"><CODE>seek</CODE></A>, <A HREF="#item_seekdir"><CODE>seekdir</CODE></A>, <A HREF="#item_select"><CODE>select</CODE></A>, <A HREF="#item_syscall"><CODE>syscall</CODE></A>,
  149. <A HREF="#item_sysread"><CODE>sysread</CODE></A>, <A HREF="#item_sysseek"><CODE>sysseek</CODE></A>, <A HREF="#item_syswrite"><CODE>syswrite</CODE></A>, <A HREF="#item_tell"><CODE>tell</CODE></A>, <A HREF="#item_telldir"><CODE>telldir</CODE></A>, <A HREF="#item_truncate"><CODE>truncate</CODE></A>,
  150. <A HREF="#item_warn"><CODE>warn</CODE></A>, <A HREF="#item_write"><CODE>write</CODE></A>
  151. <P></P>
  152. <DT><STRONG><A NAME="item_Functions_for_fixed_length_data_or_records">Functions for fixed length data or records</A></STRONG><BR>
  153. <DD>
  154. <A HREF="#item_pack"><CODE>pack</CODE></A>, <A HREF="#item_read"><CODE>read</CODE></A>, <A HREF="#item_syscall"><CODE>syscall</CODE></A>, <A HREF="#item_sysread"><CODE>sysread</CODE></A>, <A HREF="#item_syswrite"><CODE>syswrite</CODE></A>, <A HREF="#item_unpack"><CODE>unpack</CODE></A>, <A HREF="#item_vec"><CODE>vec</CODE></A>
  155. <P></P>
  156. <DT><STRONG><A NAME="item_Functions_for_filehandles%2C_files%2C_or_directori">Functions for filehandles, files, or directories</A></STRONG><BR>
  157. <DD>
  158. <A HREF="#item_%2DX"><CODE>-X</CODE></A>, <A HREF="#item_chdir"><CODE>chdir</CODE></A>, <A HREF="#item_chmod"><CODE>chmod</CODE></A>, <A HREF="#item_chown"><CODE>chown</CODE></A>, <A HREF="#item_chroot"><CODE>chroot</CODE></A>, <A HREF="#item_fcntl"><CODE>fcntl</CODE></A>, <A HREF="#item_glob"><CODE>glob</CODE></A>,
  159. <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>, <A HREF="#item_link"><CODE>link</CODE></A>, <A HREF="#item_lstat"><CODE>lstat</CODE></A>, <A HREF="#item_mkdir"><CODE>mkdir</CODE></A>, <A HREF="#item_open"><CODE>open</CODE></A>, <A HREF="#item_opendir"><CODE>opendir</CODE></A>,
  160. <A HREF="#item_readlink"><CODE>readlink</CODE></A>, <A HREF="#item_rename"><CODE>rename</CODE></A>, <A HREF="#item_rmdir"><CODE>rmdir</CODE></A>, <A HREF="#item_stat"><CODE>stat</CODE></A>, <A HREF="#item_symlink"><CODE>symlink</CODE></A>, <A HREF="#item_umask"><CODE>umask</CODE></A>,
  161. <A HREF="#item_unlink"><CODE>unlink</CODE></A>, <A HREF="#item_utime"><CODE>utime</CODE></A>
  162. <P></P>
  163. <DT><STRONG><A NAME="item_Keywords_related_to_the_control_flow_of_your_perl_">Keywords related to the control flow of your perl program</A></STRONG><BR>
  164. <DD>
  165. <A HREF="#item_caller"><CODE>caller</CODE></A>, <A HREF="#item_continue"><CODE>continue</CODE></A>, <A HREF="#item_die"><CODE>die</CODE></A>, <A HREF="#item_do"><CODE>do</CODE></A>, <A HREF="#item_dump"><CODE>dump</CODE></A>, <A HREF="#item_eval"><CODE>eval</CODE></A>, <A HREF="#item_exit"><CODE>exit</CODE></A>,
  166. <A HREF="#item_goto"><CODE>goto</CODE></A>, <A HREF="#item_last"><CODE>last</CODE></A>, <A HREF="#item_next"><CODE>next</CODE></A>, <A HREF="#item_redo"><CODE>redo</CODE></A>, <A HREF="#item_return"><CODE>return</CODE></A>, <A HREF="#item_sub"><CODE>sub</CODE></A>, <A HREF="#item_wantarray"><CODE>wantarray</CODE></A>
  167. <P></P>
  168. <DT><STRONG><A NAME="item_Keywords_related_to_scoping">Keywords related to scoping</A></STRONG><BR>
  169. <DD>
  170. <A HREF="#item_caller"><CODE>caller</CODE></A>, <A HREF="#item_import"><CODE>import</CODE></A>, <A HREF="#item_local"><CODE>local</CODE></A>, <A HREF="#item_my"><CODE>my</CODE></A>, <A HREF="#item_package"><CODE>package</CODE></A>, <A HREF="#item_use"><CODE>use</CODE></A>
  171. <P></P>
  172. <DT><STRONG><A NAME="item_Miscellaneous_functions">Miscellaneous functions</A></STRONG><BR>
  173. <DD>
  174. <A HREF="#item_defined"><CODE>defined</CODE></A>, <A HREF="#item_dump"><CODE>dump</CODE></A>, <A HREF="#item_eval"><CODE>eval</CODE></A>, <A HREF="#item_formline"><CODE>formline</CODE></A>, <A HREF="#item_local"><CODE>local</CODE></A>, <A HREF="#item_my"><CODE>my</CODE></A>, <A HREF="#item_reset"><CODE>reset</CODE></A>,
  175. <A HREF="#item_scalar"><CODE>scalar</CODE></A>, <A HREF="#item_undef"><CODE>undef</CODE></A>, <A HREF="#item_wantarray"><CODE>wantarray</CODE></A>
  176. <P></P>
  177. <DT><STRONG><A NAME="item_Functions_for_processes_and_process_groups">Functions for processes and process groups</A></STRONG><BR>
  178. <DD>
  179. <A HREF="#item_alarm"><CODE>alarm</CODE></A>, <A HREF="#item_exec"><CODE>exec</CODE></A>, <A HREF="#item_fork"><CODE>fork</CODE></A>, <A HREF="#item_getpgrp"><CODE>getpgrp</CODE></A>, <A HREF="#item_getppid"><CODE>getppid</CODE></A>, <A HREF="#item_getpriority"><CODE>getpriority</CODE></A>, <A HREF="#item_kill"><CODE>kill</CODE></A>,
  180. <A HREF="#item_pipe"><CODE>pipe</CODE></A>, <A HREF="#item_qx/"><CODE>qx/STRING/</CODE></A>, <A HREF="#item_setpgrp"><CODE>setpgrp</CODE></A>, <A HREF="#item_setpriority"><CODE>setpriority</CODE></A>, <A HREF="#item_sleep"><CODE>sleep</CODE></A>, <A HREF="#item_system"><CODE>system</CODE></A>,
  181. <A HREF="#item_times"><CODE>times</CODE></A>, <A HREF="#item_wait"><CODE>wait</CODE></A>, <A HREF="#item_waitpid"><CODE>waitpid</CODE></A>
  182. <P></P>
  183. <DT><STRONG><A NAME="item_Keywords_related_to_perl_modules">Keywords related to perl modules</A></STRONG><BR>
  184. <DD>
  185. <A HREF="#item_do"><CODE>do</CODE></A>, <A HREF="#item_import"><CODE>import</CODE></A>, <A HREF="#item_no"><CODE>no</CODE></A>, <A HREF="#item_package"><CODE>package</CODE></A>, <A HREF="#item_require"><CODE>require</CODE></A>, <A HREF="#item_use"><CODE>use</CODE></A>
  186. <P></P>
  187. <DT><STRONG><A NAME="item_Keywords_related_to_classes_and_object%2Dorientedn">Keywords related to classes and object-orientedness</A></STRONG><BR>
  188. <DD>
  189. <A HREF="#item_bless"><CODE>bless</CODE></A>, <A HREF="#item_dbmclose"><CODE>dbmclose</CODE></A>, <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A>, <A HREF="#item_package"><CODE>package</CODE></A>, <A HREF="#item_ref"><CODE>ref</CODE></A>, <A HREF="#item_tie"><CODE>tie</CODE></A>, <A HREF="#item_tied"><CODE>tied</CODE></A>,
  190. <A HREF="#item_untie"><CODE>untie</CODE></A>, <A HREF="#item_use"><CODE>use</CODE></A>
  191. <P></P>
  192. <DT><STRONG><A NAME="item_Low%2Dlevel_socket_functions">Low-level socket functions</A></STRONG><BR>
  193. <DD>
  194. <A HREF="#item_accept"><CODE>accept</CODE></A>, <A HREF="#item_bind"><CODE>bind</CODE></A>, <A HREF="#item_connect"><CODE>connect</CODE></A>, <A HREF="#item_getpeername"><CODE>getpeername</CODE></A>, <A HREF="#item_getsockname"><CODE>getsockname</CODE></A>,
  195. <A HREF="#item_getsockopt"><CODE>getsockopt</CODE></A>, <A HREF="#item_listen"><CODE>listen</CODE></A>, <A HREF="#item_recv"><CODE>recv</CODE></A>, <A HREF="#item_send"><CODE>send</CODE></A>, <A HREF="#item_setsockopt"><CODE>setsockopt</CODE></A>, <A HREF="#item_shutdown"><CODE>shutdown</CODE></A>,
  196. <A HREF="#item_socket"><CODE>socket</CODE></A>, <A HREF="#item_socketpair"><CODE>socketpair</CODE></A>
  197. <P></P>
  198. <DT><STRONG><A NAME="item_System_V_interprocess_communication_functions">System V interprocess communication functions</A></STRONG><BR>
  199. <DD>
  200. <A HREF="#item_msgctl"><CODE>msgctl</CODE></A>, <A HREF="#item_msgget"><CODE>msgget</CODE></A>, <A HREF="#item_msgrcv"><CODE>msgrcv</CODE></A>, <A HREF="#item_msgsnd"><CODE>msgsnd</CODE></A>, <A HREF="#item_semctl"><CODE>semctl</CODE></A>, <A HREF="#item_semget"><CODE>semget</CODE></A>, <A HREF="#item_semop"><CODE>semop</CODE></A>,
  201. <A HREF="#item_shmctl"><CODE>shmctl</CODE></A>, <A HREF="#item_shmget"><CODE>shmget</CODE></A>, <A HREF="#item_shmread"><CODE>shmread</CODE></A>, <A HREF="#item_shmwrite"><CODE>shmwrite</CODE></A>
  202. <P></P>
  203. <DT><STRONG><A NAME="item_Fetching_user_and_group_info">Fetching user and group info</A></STRONG><BR>
  204. <DD>
  205. <A HREF="#item_endgrent"><CODE>endgrent</CODE></A>, <A HREF="#item_endhostent"><CODE>endhostent</CODE></A>, <A HREF="#item_endnetent"><CODE>endnetent</CODE></A>, <A HREF="#item_endpwent"><CODE>endpwent</CODE></A>, <A HREF="#item_getgrent"><CODE>getgrent</CODE></A>,
  206. <A HREF="#item_getgrgid"><CODE>getgrgid</CODE></A>, <A HREF="#item_getgrnam"><CODE>getgrnam</CODE></A>, <A HREF="#item_getlogin"><CODE>getlogin</CODE></A>, <A HREF="#item_getpwent"><CODE>getpwent</CODE></A>, <A HREF="#item_getpwnam"><CODE>getpwnam</CODE></A>,
  207. <A HREF="#item_getpwuid"><CODE>getpwuid</CODE></A>, <A HREF="#item_setgrent"><CODE>setgrent</CODE></A>, <A HREF="#item_setpwent"><CODE>setpwent</CODE></A>
  208. <P></P>
  209. <DT><STRONG><A NAME="item_Fetching_network_info">Fetching network info</A></STRONG><BR>
  210. <DD>
  211. <A HREF="#item_endprotoent"><CODE>endprotoent</CODE></A>, <A HREF="#item_endservent"><CODE>endservent</CODE></A>, <A HREF="#item_gethostbyaddr"><CODE>gethostbyaddr</CODE></A>, <A HREF="#item_gethostbyname"><CODE>gethostbyname</CODE></A>,
  212. <A HREF="#item_gethostent"><CODE>gethostent</CODE></A>, <A HREF="#item_getnetbyaddr"><CODE>getnetbyaddr</CODE></A>, <A HREF="#item_getnetbyname"><CODE>getnetbyname</CODE></A>, <A HREF="#item_getnetent"><CODE>getnetent</CODE></A>,
  213. <A HREF="#item_getprotobyname"><CODE>getprotobyname</CODE></A>, <A HREF="#item_getprotobynumber"><CODE>getprotobynumber</CODE></A>, <A HREF="#item_getprotoent"><CODE>getprotoent</CODE></A>,
  214. <A HREF="#item_getservbyname"><CODE>getservbyname</CODE></A>, <A HREF="#item_getservbyport"><CODE>getservbyport</CODE></A>, <A HREF="#item_getservent"><CODE>getservent</CODE></A>, <A HREF="#item_sethostent"><CODE>sethostent</CODE></A>,
  215. <A HREF="#item_setnetent"><CODE>setnetent</CODE></A>, <A HREF="#item_setprotoent"><CODE>setprotoent</CODE></A>, <A HREF="#item_setservent"><CODE>setservent</CODE></A>
  216. <P></P>
  217. <DT><STRONG><A NAME="item_Time%2Drelated_functions">Time-related functions</A></STRONG><BR>
  218. <DD>
  219. <A HREF="#item_gmtime"><CODE>gmtime</CODE></A>, <A HREF="#item_localtime"><CODE>localtime</CODE></A>, <A HREF="#item_time"><CODE>time</CODE></A>, <A HREF="#item_times"><CODE>times</CODE></A>
  220. <P></P>
  221. <DT><STRONG><A NAME="item_Functions_new_in_perl5">Functions new in perl5</A></STRONG><BR>
  222. <DD>
  223. <A HREF="#item_abs"><CODE>abs</CODE></A>, <A HREF="#item_bless"><CODE>bless</CODE></A>, <A HREF="#item_chomp"><CODE>chomp</CODE></A>, <A HREF="#item_chr"><CODE>chr</CODE></A>, <A HREF="#item_exists"><CODE>exists</CODE></A>, <A HREF="#item_formline"><CODE>formline</CODE></A>, <A HREF="#item_glob"><CODE>glob</CODE></A>,
  224. <A HREF="#item_import"><CODE>import</CODE></A>, <A HREF="#item_lc"><CODE>lc</CODE></A>, <A HREF="#item_lcfirst"><CODE>lcfirst</CODE></A>, <A HREF="#item_map"><CODE>map</CODE></A>, <A HREF="#item_my"><CODE>my</CODE></A>, <A HREF="#item_no"><CODE>no</CODE></A>, <A HREF="#item_prototype"><CODE>prototype</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_qx"><CODE>qx</CODE></A>,
  225. <A HREF="../../lib/Pod/perlfunc.html#item_qw"><CODE>qw</CODE></A>, <A HREF="#item_readline"><CODE>readline</CODE></A>, <A HREF="#item_readpipe"><CODE>readpipe</CODE></A>, <A HREF="#item_ref"><CODE>ref</CODE></A>, <CODE>sub*</CODE>, <A HREF="#item_sysopen"><CODE>sysopen</CODE></A>, <A HREF="#item_tie"><CODE>tie</CODE></A>,
  226. <A HREF="#item_tied"><CODE>tied</CODE></A>, <A HREF="#item_uc"><CODE>uc</CODE></A>, <A HREF="#item_ucfirst"><CODE>ucfirst</CODE></A>, <A HREF="#item_untie"><CODE>untie</CODE></A>, <A HREF="#item_use"><CODE>use</CODE></A>
  227. <P>* - <A HREF="#item_sub"><CODE>sub</CODE></A> was a keyword in perl4, but in perl5 it is an
  228. operator, which can be used in expressions.</P>
  229. <P></P>
  230. <DT><STRONG><A NAME="item_Functions_obsoleted_in_perl5">Functions obsoleted in perl5</A></STRONG><BR>
  231. <DD>
  232. <A HREF="#item_dbmclose"><CODE>dbmclose</CODE></A>, <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A>
  233. <P></P></DL>
  234. <P>
  235. <H2><A NAME="portability">Portability</A></H2>
  236. <P>Perl was born in Unix and can therefore access all common Unix
  237. system calls.  In non-Unix environments, the functionality of some
  238. Unix system calls may not be available, or details of the available
  239. functionality may differ slightly.  The Perl functions affected
  240. by this are:</P>
  241. <P><A HREF="#item_%2DX"><CODE>-X</CODE></A>, <A HREF="#item_binmode"><CODE>binmode</CODE></A>, <A HREF="#item_chmod"><CODE>chmod</CODE></A>, <A HREF="#item_chown"><CODE>chown</CODE></A>, <A HREF="#item_chroot"><CODE>chroot</CODE></A>, <A HREF="#item_crypt"><CODE>crypt</CODE></A>,
  242. <A HREF="#item_dbmclose"><CODE>dbmclose</CODE></A>, <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A>, <A HREF="#item_dump"><CODE>dump</CODE></A>, <A HREF="#item_endgrent"><CODE>endgrent</CODE></A>, <A HREF="#item_endhostent"><CODE>endhostent</CODE></A>,
  243. <A HREF="#item_endnetent"><CODE>endnetent</CODE></A>, <A HREF="#item_endprotoent"><CODE>endprotoent</CODE></A>, <A HREF="#item_endpwent"><CODE>endpwent</CODE></A>, <A HREF="#item_endservent"><CODE>endservent</CODE></A>, <A HREF="#item_exec"><CODE>exec</CODE></A>,
  244. <A HREF="#item_fcntl"><CODE>fcntl</CODE></A>, <A HREF="#item_flock"><CODE>flock</CODE></A>, <A HREF="#item_fork"><CODE>fork</CODE></A>, <A HREF="#item_getgrent"><CODE>getgrent</CODE></A>, <A HREF="#item_getgrgid"><CODE>getgrgid</CODE></A>, <A HREF="#item_gethostent"><CODE>gethostent</CODE></A>,
  245. <A HREF="#item_getlogin"><CODE>getlogin</CODE></A>, <A HREF="#item_getnetbyaddr"><CODE>getnetbyaddr</CODE></A>, <A HREF="#item_getnetbyname"><CODE>getnetbyname</CODE></A>, <A HREF="#item_getnetent"><CODE>getnetent</CODE></A>,
  246. <A HREF="#item_getppid"><CODE>getppid</CODE></A>, <CODE>getprgp</CODE>, <A HREF="#item_getpriority"><CODE>getpriority</CODE></A>, <A HREF="#item_getprotobynumber"><CODE>getprotobynumber</CODE></A>,
  247. <A HREF="#item_getprotoent"><CODE>getprotoent</CODE></A>, <A HREF="#item_getpwent"><CODE>getpwent</CODE></A>, <A HREF="#item_getpwnam"><CODE>getpwnam</CODE></A>, <A HREF="#item_getpwuid"><CODE>getpwuid</CODE></A>,
  248. <A HREF="#item_getservbyport"><CODE>getservbyport</CODE></A>, <A HREF="#item_getservent"><CODE>getservent</CODE></A>, <A HREF="#item_getsockopt"><CODE>getsockopt</CODE></A>, <A HREF="#item_glob"><CODE>glob</CODE></A>, <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>,
  249. <A HREF="#item_kill"><CODE>kill</CODE></A>, <A HREF="#item_link"><CODE>link</CODE></A>, <A HREF="#item_lstat"><CODE>lstat</CODE></A>, <A HREF="#item_msgctl"><CODE>msgctl</CODE></A>, <A HREF="#item_msgget"><CODE>msgget</CODE></A>, <A HREF="#item_msgrcv"><CODE>msgrcv</CODE></A>,
  250. <A HREF="#item_msgsnd"><CODE>msgsnd</CODE></A>, <A HREF="#item_open"><CODE>open</CODE></A>, <A HREF="#item_pipe"><CODE>pipe</CODE></A>, <A HREF="#item_readlink"><CODE>readlink</CODE></A>, <A HREF="#item_rename"><CODE>rename</CODE></A>, <A HREF="#item_select"><CODE>select</CODE></A>, <A HREF="#item_semctl"><CODE>semctl</CODE></A>,
  251. <A HREF="#item_semget"><CODE>semget</CODE></A>, <A HREF="#item_semop"><CODE>semop</CODE></A>, <A HREF="#item_setgrent"><CODE>setgrent</CODE></A>, <A HREF="#item_sethostent"><CODE>sethostent</CODE></A>, <A HREF="#item_setnetent"><CODE>setnetent</CODE></A>,
  252. <A HREF="#item_setpgrp"><CODE>setpgrp</CODE></A>, <A HREF="#item_setpriority"><CODE>setpriority</CODE></A>, <A HREF="#item_setprotoent"><CODE>setprotoent</CODE></A>, <A HREF="#item_setpwent"><CODE>setpwent</CODE></A>,
  253. <A HREF="#item_setservent"><CODE>setservent</CODE></A>, <A HREF="#item_setsockopt"><CODE>setsockopt</CODE></A>, <A HREF="#item_shmctl"><CODE>shmctl</CODE></A>, <A HREF="#item_shmget"><CODE>shmget</CODE></A>, <A HREF="#item_shmread"><CODE>shmread</CODE></A>,
  254. <A HREF="#item_shmwrite"><CODE>shmwrite</CODE></A>, <A HREF="#item_socket"><CODE>socket</CODE></A>, <A HREF="#item_socketpair"><CODE>socketpair</CODE></A>, <A HREF="#item_stat"><CODE>stat</CODE></A>, <A HREF="#item_symlink"><CODE>symlink</CODE></A>, <A HREF="#item_syscall"><CODE>syscall</CODE></A>,
  255. <A HREF="#item_sysopen"><CODE>sysopen</CODE></A>, <A HREF="#item_system"><CODE>system</CODE></A>, <A HREF="#item_times"><CODE>times</CODE></A>, <A HREF="#item_truncate"><CODE>truncate</CODE></A>, <A HREF="#item_umask"><CODE>umask</CODE></A>, <A HREF="#item_unlink"><CODE>unlink</CODE></A>,
  256. <A HREF="#item_utime"><CODE>utime</CODE></A>, <A HREF="#item_wait"><CODE>wait</CODE></A>, <A HREF="#item_waitpid"><CODE>waitpid</CODE></A></P>
  257. <P>For more information about the portability of these functions, see
  258. <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> and other available platform-specific documentation.</P>
  259. <P>
  260. <H2><A NAME="alphabetical listing of perl functions">Alphabetical Listing of Perl Functions</A></H2>
  261. <DL>
  262. <DT><STRONG><A NAME="item_%2DX_FILEHANDLE"><EM>-X</EM> FILEHANDLE</A></STRONG><BR>
  263. <DD>
  264. <DT><STRONG><A NAME="item_%2DX_EXPR"><EM>-X</EM> EXPR</A></STRONG><BR>
  265. <DD>
  266. <DT><STRONG><A NAME="item_%2DX"><EM>-X</EM></A></STRONG><BR>
  267. <DD>
  268. A file test, where X is one of the letters listed below.  This unary
  269. operator takes one argument, either a filename or a filehandle, and
  270. tests the associated file to see if something is true about it.  If the
  271. argument is omitted, tests <CODE>$_</CODE>, except for <CODE>-t</CODE>, which tests STDIN.
  272. Unless otherwise documented, it returns <CODE>1</CODE> for true and <CODE>''</CODE> for false, or
  273. the undefined value if the file doesn't exist.  Despite the funny
  274. names, precedence is the same as any other named unary operator, and
  275. the argument may be parenthesized like any other unary operator.  The
  276. operator may be any of:
  277.  
  278.  
  279. <PRE>
  280.     -r  File is readable by effective uid/gid.
  281.     -w  File is writable by effective uid/gid.
  282.     -x  File is executable by effective uid/gid.
  283.     -o  File is owned by effective uid.</PRE>
  284. <PRE>
  285.     -R  File is readable by real uid/gid.
  286.     -W  File is writable by real uid/gid.
  287.     -X  File is executable by real uid/gid.
  288.     -O  File is owned by real uid.</PRE>
  289. <PRE>
  290.     -e  File exists.
  291.     -z  File has zero size.
  292.     -s  File has nonzero size (returns size).</PRE>
  293. <PRE>
  294.     -f  File is a plain file.
  295.     -d  File is a directory.
  296.     -l  File is a symbolic link.
  297.     -p  File is a named pipe (FIFO), or Filehandle is a pipe.
  298.     -S  File is a socket.
  299.     -b  File is a block special file.
  300.     -c  File is a character special file.
  301.     -t  Filehandle is opened to a tty.</PRE>
  302. <PRE>
  303.     -u  File has setuid bit set.
  304.     -g  File has setgid bit set.
  305.     -k  File has sticky bit set.</PRE>
  306. <PRE>
  307.     -T  File is an ASCII text file.
  308.     -B  File is a "binary" file (opposite of -T).</PRE>
  309. <PRE>
  310.     -M  Age of file in days when script started.
  311.     -A  Same for access time.
  312.     -C  Same for inode change time.</PRE>
  313. <P>Example:</P>
  314. <PRE>
  315.     while (<>) {
  316.         chop;
  317.         next unless -f $_;      # ignore specials
  318.         #...
  319.     }</PRE>
  320. <P>The interpretation of the file permission operators <CODE>-r</CODE>, <CODE>-R</CODE>,
  321. <CODE>-w</CODE>, <CODE>-W</CODE>, <CODE>-x</CODE>, and <A HREF="#item_%2DX"><CODE>-X</CODE></A> is by default based solely on the mode
  322. of the file and the uids and gids of the user.  There may be other
  323. reasons you can't actually read, write, or execute the file.  Such
  324. reasons may be for example network filesystem access controls, ACLs
  325. (access control lists), read-only filesystems, and unrecognized
  326. executable formats.</P>
  327. <P>Also note that, for the superuser on the local filesystems, the <CODE>-r</CODE>,
  328. <CODE>-R</CODE>, <CODE>-w</CODE>, and <CODE>-W</CODE> tests always return 1, and <CODE>-x</CODE> and <A HREF="#item_%2DX"><CODE>-X</CODE></A> return 1
  329. if any execute bit is set in the mode.  Scripts run by the superuser
  330. may thus need to do a <A HREF="#item_stat"><CODE>stat()</CODE></A> to determine the actual mode of the file,
  331. or temporarily set their effective uid to something else.</P>
  332. <P>If you are using ACLs, there is a pragma called <CODE>filetest</CODE> that may
  333. produce more accurate results than the bare <A HREF="#item_stat"><CODE>stat()</CODE></A> mode bits.
  334. When under the <CODE>use filetest 'access'</CODE> the above-mentioned filetests
  335. will test whether the permission can (not) be granted using the
  336. <CODE>access()</CODE> family of system calls.  Also note that the <CODE>-x</CODE> and <A HREF="#item_%2DX"><CODE>-X</CODE></A> may
  337. under this pragma return true even if there are no execute permission
  338. bits set (nor any extra execute permission ACLs).  This strangeness is
  339. due to the underlying system calls' definitions.  Read the
  340. documentation for the <CODE>filetest</CODE> pragma for more information.</P>
  341. <P>Note that <CODE>-s/a/b/</CODE> does not do a negated substitution.  Saying
  342. <A HREF="#item_exp"><CODE>-exp($foo)</CODE></A> still works as expected, however--only single letters
  343. following a minus are interpreted as file tests.</P>
  344. <P>The <CODE>-T</CODE> and <CODE>-B</CODE> switches work as follows.  The first block or so of the
  345. file is examined for odd characters such as strange control codes or
  346. characters with the high bit set.  If too many strange characters (>30%)
  347. are found, it's a <CODE>-B</CODE> file, otherwise it's a <CODE>-T</CODE> file.  Also, any file
  348. containing null in the first block is considered a binary file.  If <CODE>-T</CODE>
  349. or <CODE>-B</CODE> is used on a filehandle, the current stdio buffer is examined
  350. rather than the first block.  Both <CODE>-T</CODE> and <CODE>-B</CODE> return true on a null
  351. file, or a file at EOF when testing a filehandle.  Because you have to
  352. read a file to do the <CODE>-T</CODE> test, on most occasions you want to use a <CODE>-f</CODE>
  353. against the file first, as in <CODE>next unless -f $file && -T $file</CODE>.</P>
  354. <P>If any of the file tests (or either the <A HREF="#item_stat"><CODE>stat</CODE></A> or <A HREF="#item_lstat"><CODE>lstat</CODE></A> operators) are given
  355. the special filehandle consisting of a solitary underline, then the stat
  356. structure of the previous file test (or stat operator) is used, saving
  357. a system call.  (This doesn't work with <CODE>-t</CODE>, and you need to remember
  358. that <A HREF="#item_lstat"><CODE>lstat()</CODE></A> and <CODE>-l</CODE> will leave values in the stat structure for the
  359. symbolic link, not the real file.)  Example:</P>
  360. <PRE>
  361.     print "Can do.\n" if -r $a || -w _ || -x _;</PRE>
  362. <PRE>
  363.     stat($filename);
  364.     print "Readable\n" if -r _;
  365.     print "Writable\n" if -w _;
  366.     print "Executable\n" if -x _;
  367.     print "Setuid\n" if -u _;
  368.     print "Setgid\n" if -g _;
  369.     print "Sticky\n" if -k _;
  370.     print "Text\n" if -T _;
  371.     print "Binary\n" if -B _;</PRE>
  372. <P></P>
  373. <DT><STRONG><A NAME="item_abs">abs VALUE</A></STRONG><BR>
  374. <DD>
  375. <DT><STRONG>abs</STRONG><BR>
  376. <DD>
  377. Returns the absolute value of its argument.
  378. If VALUE is omitted, uses <CODE>$_</CODE>.
  379. <P></P>
  380. <DT><STRONG><A NAME="item_accept">accept NEWSOCKET,GENERICSOCKET</A></STRONG><BR>
  381. <DD>
  382. Accepts an incoming socket connect, just as the <A HREF="#item_accept"><CODE>accept(2)</CODE></A> system call
  383. does.  Returns the packed address if it succeeded, false otherwise.
  384. See the example in <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A>.
  385. <P>On systems that support a close-on-exec flag on files, the flag will
  386. be set for the newly opened file descriptor, as determined by the
  387. value of $^F.  See <A HREF="../../lib/Pod/perlvar.html#$^f">$^F in the perlvar manpage</A>.</P>
  388. <P></P>
  389. <DT><STRONG><A NAME="item_alarm">alarm SECONDS</A></STRONG><BR>
  390. <DD>
  391. <DT><STRONG>alarm</STRONG><BR>
  392. <DD>
  393. Arranges to have a SIGALRM delivered to this process after the
  394. specified number of seconds have elapsed.  If SECONDS is not specified,
  395. the value stored in <CODE>$_</CODE> is used. (On some machines,
  396. unfortunately, the elapsed time may be up to one second less than you
  397. specified because of how seconds are counted.)  Only one timer may be
  398. counting at once.  Each call disables the previous timer, and an
  399. argument of <CODE>0</CODE> may be supplied to cancel the previous timer without
  400. starting a new one.  The returned value is the amount of time remaining
  401. on the previous timer.
  402. <P>For delays of finer granularity than one second, you may use Perl's
  403. four-argument version of <A HREF="#item_select"><CODE>select()</CODE></A> leaving the first three arguments
  404. undefined, or you might be able to use the <A HREF="#item_syscall"><CODE>syscall</CODE></A> interface to
  405. access <CODE>setitimer(2)</CODE> if your system supports it.  The Time::HiRes module
  406. from CPAN may also prove useful.</P>
  407. <P>It is usually a mistake to intermix <A HREF="#item_alarm"><CODE>alarm</CODE></A> and <A HREF="#item_sleep"><CODE>sleep</CODE></A> calls.
  408. (<A HREF="#item_sleep"><CODE>sleep</CODE></A> may be internally implemented in your system with <A HREF="#item_alarm"><CODE>alarm</CODE></A>)</P>
  409. <P>If you want to use <A HREF="#item_alarm"><CODE>alarm</CODE></A> to time out a system call you need to use an
  410. <A HREF="#item_eval"><CODE>eval</CODE></A>/<A HREF="#item_die"><CODE>die</CODE></A> pair.  You can't rely on the alarm causing the system call to
  411. fail with <CODE>$!</CODE> set to <CODE>EINTR</CODE> because Perl sets up signal handlers to
  412. restart system calls on some systems.  Using <A HREF="#item_eval"><CODE>eval</CODE></A>/<A HREF="#item_die"><CODE>die</CODE></A> always works,
  413. modulo the caveats given in <A HREF="../../lib/Pod/perlipc.html#signals">Signals in the perlipc manpage</A>.</P>
  414. <PRE>
  415.     eval {
  416.         local $SIG{ALRM} = sub { die "alarm\n" }; # NB: \n required
  417.         alarm $timeout;
  418.         $nread = sysread SOCKET, $buffer, $size;
  419.         alarm 0;
  420.     };
  421.     if ($@) {
  422.         die unless $@ eq "alarm\n";   # propagate unexpected errors
  423.         # timed out
  424.     }
  425.     else {
  426.         # didn't
  427.     }</PRE>
  428. <P></P>
  429. <DT><STRONG><A NAME="item_atan2">atan2 Y,X</A></STRONG><BR>
  430. <DD>
  431. Returns the arctangent of Y/X in the range -PI to PI.
  432. <P>For the tangent operation, you may use the <CODE>Math::Trig::tan</CODE>
  433. function, or use the familiar relation:</P>
  434. <PRE>
  435.     sub tan { sin($_[0]) / cos($_[0])  }</PRE>
  436. <P></P>
  437. <DT><STRONG><A NAME="item_bind">bind SOCKET,NAME</A></STRONG><BR>
  438. <DD>
  439. Binds a network address to a socket, just as the bind system call
  440. does.  Returns true if it succeeded, false otherwise.  NAME should be a
  441. packed address of the appropriate type for the socket.  See the examples in
  442. <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A>.
  443. <P></P>
  444. <DT><STRONG><A NAME="item_binmode">binmode FILEHANDLE, DISCIPLINE</A></STRONG><BR>
  445. <DD>
  446. <DT><STRONG>binmode FILEHANDLE</STRONG><BR>
  447. <DD>
  448. Arranges for FILEHANDLE to be read or written in ``binary'' or ``text'' mode
  449. on systems where the run-time libraries distinguish between binary and
  450. text files.  If FILEHANDLE is an expression, the value is taken as the
  451. name of the filehandle.  DISCIPLINE can be either of <CODE>":raw"</CODE> for
  452. binary mode or <CODE>":crlf"</CODE> for ``text'' mode.  If the DISCIPLINE is
  453. omitted, it defaults to <CODE>":raw"</CODE>.
  454. <P><A HREF="#item_binmode"><CODE>binmode()</CODE></A> should be called after <A HREF="#item_open"><CODE>open()</CODE></A> but before any I/O is done on
  455. the filehandle.</P>
  456. <P>On many systems <A HREF="#item_binmode"><CODE>binmode()</CODE></A> currently has no effect, but in future, it
  457. will be extended to support user-defined input and output disciplines.
  458. On some systems <A HREF="#item_binmode"><CODE>binmode()</CODE></A> is necessary when you're not working with a
  459. text file.  For the sake of portability it is a good idea to always use
  460. it when appropriate, and to never use it when it isn't appropriate.</P>
  461. <P>In other words:  Regardless of platform, use <A HREF="#item_binmode"><CODE>binmode()</CODE></A> on binary
  462. files, and do not use <A HREF="#item_binmode"><CODE>binmode()</CODE></A> on text files.</P>
  463. <P>The <A HREF="#item_open"><CODE>open</CODE></A> pragma can be used to establish default disciplines.
  464. See <A HREF="../../lib/open.html">the open manpage</A>.</P>
  465. <P>The operating system, device drivers, C libraries, and Perl run-time
  466. system all work together to let the programmer treat a single
  467. character (<CODE>\n</CODE>) as the line terminator, irrespective of the external
  468. representation.  On many operating systems, the native text file
  469. representation matches the internal representation, but on some
  470. platforms the external representation of <CODE>\n</CODE> is made up of more than
  471. one character.</P>
  472. <P>Mac OS and all variants of Unix use a single character to end each line
  473. in the external representation of text (even though that single
  474. character is not necessarily the same across these platforms).
  475. Consequently <A HREF="#item_binmode"><CODE>binmode()</CODE></A> has no effect on these operating systems.  In
  476. other systems like VMS, MS-DOS and the various flavors of MS-Windows
  477. your program sees a <CODE>\n</CODE> as a simple <CODE>\cJ</CODE>, but what's stored in text
  478. files are the two characters <CODE>\cM\cJ</CODE>.  That means that, if you don't
  479. use <A HREF="#item_binmode"><CODE>binmode()</CODE></A> on these systems, <CODE>\cM\cJ</CODE> sequences on disk will be
  480. converted to <CODE>\n</CODE> on input, and any <CODE>\n</CODE> in your program will be
  481. converted back to <CODE>\cM\cJ</CODE> on output.  This is what you want for text
  482. files, but it can be disastrous for binary files.</P>
  483. <P>Another consequence of using <A HREF="#item_binmode"><CODE>binmode()</CODE></A> (on some systems) is that
  484. special end-of-file markers will be seen as part of the data stream.
  485. For systems from the Microsoft family this means that if your binary
  486. data contains <CODE>\cZ</CODE>, the I/O subsystem will ragard it as the end of
  487. the file, unless you use binmode().</P>
  488. <P><A HREF="#item_binmode"><CODE>binmode()</CODE></A> is not only important for <A HREF="#item_readline"><CODE>readline()</CODE></A> and <A HREF="#item_print"><CODE>print()</CODE></A> operations,
  489. but also when using read(), seek(), sysread(), <A HREF="#item_syswrite"><CODE>syswrite()</CODE></A> and <A HREF="#item_tell"><CODE>tell()</CODE></A>
  490. (see <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for more details).  See the <CODE>$/</CODE> and <CODE>$\</CODE> variables
  491. in <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A> for how to manually set your input and output
  492. line-termination sequences.</P>
  493. <P></P>
  494. <DT><STRONG><A NAME="item_bless">bless REF,CLASSNAME</A></STRONG><BR>
  495. <DD>
  496. <DT><STRONG>bless REF</STRONG><BR>
  497. <DD>
  498. This function tells the thingy referenced by REF that it is now an object
  499. in the CLASSNAME package.  If CLASSNAME is omitted, the current package
  500. is used.  Because a <A HREF="#item_bless"><CODE>bless</CODE></A> is often the last thing in a constructor,
  501. it returns the reference for convenience.  Always use the two-argument
  502. version if the function doing the blessing might be inherited by a
  503. derived class.  See <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> and <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A> for more about the blessing
  504. (and blessings) of objects.
  505. <P>Consider always blessing objects in CLASSNAMEs that are mixed case.
  506. Namespaces with all lowercase names are considered reserved for
  507. Perl pragmata.  Builtin types have all uppercase names, so to prevent
  508. confusion, you may wish to avoid such package names as well.  Make sure
  509. that CLASSNAME is a true value.</P>
  510. <P>See <A HREF="../../lib/Pod/perlmod.html#perl modules">Perl Modules in the perlmod manpage</A>.</P>
  511. <P></P>
  512. <DT><STRONG><A NAME="item_caller">caller EXPR</A></STRONG><BR>
  513. <DD>
  514. <DT><STRONG>caller</STRONG><BR>
  515. <DD>
  516. Returns the context of the current subroutine call.  In scalar context,
  517. returns the caller's package name if there is a caller, that is, if
  518. we're in a subroutine or <A HREF="#item_eval"><CODE>eval</CODE></A> or <A HREF="#item_require"><CODE>require</CODE></A>, and the undefined value
  519. otherwise.  In list context, returns
  520. <PRE>
  521.     ($package, $filename, $line) = caller;</PRE>
  522. <P>With EXPR, it returns some extra information that the debugger uses to
  523. print a stack trace.  The value of EXPR indicates how many call frames
  524. to go back before the current one.</P>
  525. <PRE>
  526.     ($package, $filename, $line, $subroutine, $hasargs,
  527.     $wantarray, $evaltext, $is_require, $hints, $bitmask) = caller($i);</PRE>
  528. <P>Here $subroutine may be <CODE>(eval)</CODE> if the frame is not a subroutine
  529. call, but an <A HREF="#item_eval"><CODE>eval</CODE></A>.  In such a case additional elements $evaltext and
  530. <CODE>$is_require</CODE> are set: <CODE>$is_require</CODE> is true if the frame is created by a
  531. <A HREF="#item_require"><CODE>require</CODE></A> or <A HREF="#item_use"><CODE>use</CODE></A> statement, $evaltext contains the text of the
  532. <A HREF="#item_eval"><CODE>eval EXPR</CODE></A> statement.  In particular, for a <A HREF="#item_eval"><CODE>eval BLOCK</CODE></A> statement,
  533. $filename is <CODE>(eval)</CODE>, but $evaltext is undefined.  (Note also that
  534. each <A HREF="#item_use"><CODE>use</CODE></A> statement creates a <A HREF="#item_require"><CODE>require</CODE></A> frame inside an <A HREF="#item_eval"><CODE>eval EXPR</CODE></A>)
  535. frame.  <CODE>$hints</CODE> and <CODE>$bitmask</CODE> contain pragmatic hints that the caller
  536. was compiled with.  The <CODE>$hints</CODE> and <CODE>$bitmask</CODE> values are subject to
  537. change between versions of Perl, and are not meant for external use.</P>
  538. <P>Furthermore, when called from within the DB package, caller returns more
  539. detailed information: it sets the list variable <CODE>@DB::args</CODE> to be the
  540. arguments with which the subroutine was invoked.</P>
  541. <P>Be aware that the optimizer might have optimized call frames away before
  542. <A HREF="#item_caller"><CODE>caller</CODE></A> had a chance to get the information.  That means that <A HREF="#item_caller"><CODE>caller(N)</CODE></A>
  543. might not return information about the call frame you expect it do, for
  544. <CODE>N > 1</CODE>.  In particular, <CODE>@DB::args</CODE> might have information from the 
  545. previous time <A HREF="#item_caller"><CODE>caller</CODE></A> was called.</P>
  546. <P></P>
  547. <DT><STRONG><A NAME="item_chdir">chdir EXPR</A></STRONG><BR>
  548. <DD>
  549. Changes the working directory to EXPR, if possible.  If EXPR is omitted,
  550. changes to the directory specified by <CODE>$ENV{HOME}</CODE>, if set; if not,
  551. changes to the directory specified by <CODE>$ENV{LOGDIR}</CODE>.  If neither is
  552. set, <A HREF="#item_chdir"><CODE>chdir</CODE></A> does nothing.  It returns true upon success, false
  553. otherwise.  See the example under <A HREF="#item_die"><CODE>die</CODE></A>.
  554. <P></P>
  555. <DT><STRONG><A NAME="item_chmod">chmod LIST</A></STRONG><BR>
  556. <DD>
  557. Changes the permissions of a list of files.  The first element of the
  558. list must be the numerical mode, which should probably be an octal
  559. number, and which definitely should <EM>not</EM> a string of octal digits:
  560. <CODE>0644</CODE> is okay, <CODE>'0644'</CODE> is not.  Returns the number of files
  561. successfully changed.  See also <A HREF="#oct">oct</A>, if all you have is a string.
  562. <PRE>
  563.     $cnt = chmod 0755, 'foo', 'bar';
  564.     chmod 0755, @executables;
  565.     $mode = '0644'; chmod $mode, 'foo';      # !!! sets mode to
  566.                                              # --w----r-T
  567.     $mode = '0644'; chmod oct($mode), 'foo'; # this is better
  568.     $mode = 0644;   chmod $mode, 'foo';      # this is best</PRE>
  569. <P>You can also import the symbolic <CODE>S_I*</CODE> constants from the Fcntl
  570. module:</P>
  571. <PRE>
  572.     use Fcntl ':mode';</PRE>
  573. <PRE>
  574.     chmod S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH, @executables;
  575.     # This is identical to the chmod 0755 of the above example.</PRE>
  576. <P></P>
  577. <DT><STRONG><A NAME="item_chomp">chomp VARIABLE</A></STRONG><BR>
  578. <DD>
  579. <DT><STRONG>chomp LIST</STRONG><BR>
  580. <DD>
  581. <DT><STRONG>chomp</STRONG><BR>
  582. <DD>
  583. This safer version of <A HREF="#chop">chop</A> removes any trailing string
  584. that corresponds to the current value of <CODE>$/</CODE> (also known as
  585. $INPUT_RECORD_SEPARATOR in the <CODE>English</CODE> module).  It returns the total
  586. number of characters removed from all its arguments.  It's often used to
  587. remove the newline from the end of an input record when you're worried
  588. that the final record may be missing its newline.  When in paragraph
  589. mode (<CODE>$/ = ""</CODE>), it removes all trailing newlines from the string.
  590. When in slurp mode (<CODE>$/ = undef</CODE>) or fixed-length record mode (<CODE>$/</CODE> is
  591. a reference to an integer or the like, see <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>) <A HREF="#item_chomp"><CODE>chomp()</CODE></A> won't
  592. remove anything.  
  593. If VARIABLE is omitted, it chomps <CODE>$_</CODE>.  Example:
  594. <PRE>
  595.     while (<>) {
  596.         chomp;  # avoid \n on last field
  597.         @array = split(/:/);
  598.         # ...
  599.     }</PRE>
  600. <P>You can actually chomp anything that's an lvalue, including an assignment:</P>
  601. <PRE>
  602.     chomp($cwd = `pwd`);
  603.     chomp($answer = <STDIN>);</PRE>
  604. <P>If you chomp a list, each element is chomped, and the total number of
  605. characters removed is returned.</P>
  606. <P></P>
  607. <DT><STRONG><A NAME="item_chop">chop VARIABLE</A></STRONG><BR>
  608. <DD>
  609. <DT><STRONG>chop LIST</STRONG><BR>
  610. <DD>
  611. <DT><STRONG>chop</STRONG><BR>
  612. <DD>
  613. Chops off the last character of a string and returns the character
  614. chopped.  It's used primarily to remove the newline from the end of an
  615. input record, but is much more efficient than <A HREF="#item_s/"><CODE>s/\n//</CODE></A> because it neither
  616. scans nor copies the string.  If VARIABLE is omitted, chops <CODE>$_</CODE>.
  617. Example:
  618. <PRE>
  619.     while (<>) {
  620.         chop;   # avoid \n on last field
  621.         @array = split(/:/);
  622.         #...
  623.     }</PRE>
  624. <P>You can actually chop anything that's an lvalue, including an assignment:</P>
  625. <PRE>
  626.     chop($cwd = `pwd`);
  627.     chop($answer = <STDIN>);</PRE>
  628. <P>If you chop a list, each element is chopped.  Only the value of the
  629. last <A HREF="#item_chop"><CODE>chop</CODE></A> is returned.</P>
  630. <P>Note that <A HREF="#item_chop"><CODE>chop</CODE></A> returns the last character.  To return all but the last
  631. character, use <A HREF="#item_substr"><CODE>substr($string, 0, -1)</CODE></A>.</P>
  632. <P></P>
  633. <DT><STRONG><A NAME="item_chown">chown LIST</A></STRONG><BR>
  634. <DD>
  635. Changes the owner (and group) of a list of files.  The first two
  636. elements of the list must be the <EM>numeric</EM> uid and gid, in that
  637. order.  A value of -1 in either position is interpreted by most
  638. systems to leave that value unchanged.  Returns the number of files
  639. successfully changed.
  640. <PRE>
  641.     $cnt = chown $uid, $gid, 'foo', 'bar';
  642.     chown $uid, $gid, @filenames;</PRE>
  643. <P>Here's an example that looks up nonnumeric uids in the passwd file:</P>
  644. <PRE>
  645.     print "User: ";
  646.     chomp($user = <STDIN>);
  647.     print "Files: ";
  648.     chomp($pattern = <STDIN>);</PRE>
  649. <PRE>
  650.     ($login,$pass,$uid,$gid) = getpwnam($user)
  651.         or die "$user not in passwd file";</PRE>
  652. <PRE>
  653.     @ary = glob($pattern);      # expand filenames
  654.     chown $uid, $gid, @ary;</PRE>
  655. <P>On most systems, you are not allowed to change the ownership of the
  656. file unless you're the superuser, although you should be able to change
  657. the group to any of your secondary groups.  On insecure systems, these
  658. restrictions may be relaxed, but this is not a portable assumption.
  659. On POSIX systems, you can detect this condition this way:</P>
  660. <PRE>
  661.     use POSIX qw(sysconf _PC_CHOWN_RESTRICTED);
  662.     $can_chown_giveaway = not sysconf(_PC_CHOWN_RESTRICTED);</PRE>
  663. <P></P>
  664. <DT><STRONG><A NAME="item_chr">chr NUMBER</A></STRONG><BR>
  665. <DD>
  666. <DT><STRONG>chr</STRONG><BR>
  667. <DD>
  668. Returns the character represented by that NUMBER in the character set.
  669. For example, <A HREF="#item_chr"><CODE>chr(65)</CODE></A> is <CODE>"A"</CODE> in either ASCII or Unicode, and
  670. <A HREF="#item_chr"><CODE>chr(0x263a)</CODE></A> is a Unicode smiley face (but only within the scope of
  671. a <CODE>use utf8</CODE>).  For the reverse, use <A HREF="#ord">ord</A>.  
  672. See <A HREF="../../lib/utf8.html">the utf8 manpage</A> for more about Unicode.
  673. <P>If NUMBER is omitted, uses <CODE>$_</CODE>.</P>
  674. <P></P>
  675. <DT><STRONG><A NAME="item_chroot">chroot FILENAME</A></STRONG><BR>
  676. <DD>
  677. <DT><STRONG>chroot</STRONG><BR>
  678. <DD>
  679. This function works like the system call by the same name: it makes the
  680. named directory the new root directory for all further pathnames that
  681. begin with a <CODE>/</CODE> by your process and all its children.  (It doesn't
  682. change your current working directory, which is unaffected.)  For security
  683. reasons, this call is restricted to the superuser.  If FILENAME is
  684. omitted, does a <A HREF="#item_chroot"><CODE>chroot</CODE></A> to <CODE>$_</CODE>.
  685. <P></P>
  686. <DT><STRONG><A NAME="item_close">close FILEHANDLE</A></STRONG><BR>
  687. <DD>
  688. <DT><STRONG>close</STRONG><BR>
  689. <DD>
  690. Closes the file or pipe associated with the file handle, returning true
  691. only if stdio successfully flushes buffers and closes the system file
  692. descriptor.  Closes the currently selected filehandle if the argument
  693. is omitted.
  694. <P>You don't have to close FILEHANDLE if you are immediately going to do
  695. another <A HREF="#item_open"><CODE>open</CODE></A> on it, because <A HREF="#item_open"><CODE>open</CODE></A> will close it for you.  (See
  696. <A HREF="#item_open"><CODE>open</CODE></A>.)  However, an explicit <A HREF="#item_close"><CODE>close</CODE></A> on an input file resets the line
  697. counter (<CODE>$.</CODE>), while the implicit close done by <A HREF="#item_open"><CODE>open</CODE></A> does not.</P>
  698. <P>If the file handle came from a piped open <A HREF="#item_close"><CODE>close</CODE></A> will additionally
  699. return false if one of the other system calls involved fails or if the
  700. program exits with non-zero status.  (If the only problem was that the
  701. program exited non-zero <CODE>$!</CODE> will be set to <CODE>0</CODE>.)  Closing a pipe 
  702. also waits for the process executing on the pipe to complete, in case you
  703. want to look at the output of the pipe afterwards, and 
  704. implicitly puts the exit status value of that command into <CODE>$?</CODE>.</P>
  705. <P>Prematurely closing the read end of a pipe (i.e. before the process
  706. writing to it at the other end has closed it) will result in a
  707. SIGPIPE being delivered to the writer.  If the other end can't
  708. handle that, be sure to read all the data before closing the pipe.</P>
  709. <P>Example:</P>
  710. <PRE>
  711.     open(OUTPUT, '|sort >foo')  # pipe to sort
  712.         or die "Can't start sort: $!";
  713.     #...                        # print stuff to output
  714.     close OUTPUT                # wait for sort to finish
  715.         or warn $! ? "Error closing sort pipe: $!"
  716.                    : "Exit status $? from sort";
  717.     open(INPUT, 'foo')          # get sort's results
  718.         or die "Can't open 'foo' for input: $!";</PRE>
  719. <P>FILEHANDLE may be an expression whose value can be used as an indirect
  720. filehandle, usually the real filehandle name.</P>
  721. <P></P>
  722. <DT><STRONG><A NAME="item_closedir">closedir DIRHANDLE</A></STRONG><BR>
  723. <DD>
  724. Closes a directory opened by <A HREF="#item_opendir"><CODE>opendir</CODE></A> and returns the success of that
  725. system call.
  726. <P>DIRHANDLE may be an expression whose value can be used as an indirect
  727. dirhandle, usually the real dirhandle name.</P>
  728. <P></P>
  729. <DT><STRONG><A NAME="item_connect">connect SOCKET,NAME</A></STRONG><BR>
  730. <DD>
  731. Attempts to connect to a remote socket, just as the connect system call
  732. does.  Returns true if it succeeded, false otherwise.  NAME should be a
  733. packed address of the appropriate type for the socket.  See the examples in
  734. <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A>.
  735. <P></P>
  736. <DT><STRONG><A NAME="item_continue">continue BLOCK</A></STRONG><BR>
  737. <DD>
  738. Actually a flow control statement rather than a function.  If there is a
  739. <A HREF="#item_continue"><CODE>continue</CODE></A> BLOCK attached to a BLOCK (typically in a <CODE>while</CODE> or
  740. <CODE>foreach</CODE>), it is always executed just before the conditional is about to
  741. be evaluated again, just like the third part of a <CODE>for</CODE> loop in C.  Thus
  742. it can be used to increment a loop variable, even when the loop has been
  743. continued via the <A HREF="#item_next"><CODE>next</CODE></A> statement (which is similar to the C <A HREF="#item_continue"><CODE>continue</CODE></A>
  744. statement).
  745. <P><A HREF="#item_last"><CODE>last</CODE></A>, <A HREF="#item_next"><CODE>next</CODE></A>, or <A HREF="#item_redo"><CODE>redo</CODE></A> may appear within a <A HREF="#item_continue"><CODE>continue</CODE></A>
  746. block.  <A HREF="#item_last"><CODE>last</CODE></A> and <A HREF="#item_redo"><CODE>redo</CODE></A> will behave as if they had been executed within
  747. the main block.  So will <A HREF="#item_next"><CODE>next</CODE></A>, but since it will execute a <A HREF="#item_continue"><CODE>continue</CODE></A>
  748. block, it may be more entertaining.</P>
  749. <PRE>
  750.     while (EXPR) {
  751.         ### redo always comes here
  752.         do_something;
  753.     } continue {
  754.         ### next always comes here
  755.         do_something_else;
  756.         # then back the top to re-check EXPR
  757.     }
  758.     ### last always comes here</PRE>
  759. <P>Omitting the <A HREF="#item_continue"><CODE>continue</CODE></A> section is semantically equivalent to using an
  760. empty one, logically enough.  In that case, <A HREF="#item_next"><CODE>next</CODE></A> goes directly back
  761. to check the condition at the top of the loop.</P>
  762. <P></P>
  763. <DT><STRONG><A NAME="item_cos">cos EXPR</A></STRONG><BR>
  764. <DD>
  765. Returns the cosine of EXPR (expressed in radians).  If EXPR is omitted,
  766. takes cosine of <CODE>$_</CODE>.
  767. <P>For the inverse cosine operation, you may use the <CODE>Math::Trig::acos()</CODE>
  768. function, or use this relation:</P>
  769. <PRE>
  770.     sub acos { atan2( sqrt(1 - $_[0] * $_[0]), $_[0] ) }</PRE>
  771. <P></P>
  772. <DT><STRONG><A NAME="item_crypt">crypt PLAINTEXT,SALT</A></STRONG><BR>
  773. <DD>
  774. Encrypts a string exactly like the <A HREF="#item_crypt"><CODE>crypt(3)</CODE></A> function in the C library
  775. (assuming that you actually have a version there that has not been
  776. extirpated as a potential munition).  This can prove useful for checking
  777. the password file for lousy passwords, amongst other things.  Only the
  778. guys wearing white hats should do this.
  779. <P>Note that <A HREF="#item_crypt"><CODE>crypt</CODE></A> is intended to be a one-way function, much like breaking
  780. eggs to make an omelette.  There is no (known) corresponding decrypt
  781. function.  As a result, this function isn't all that useful for
  782. cryptography.  (For that, see your nearby CPAN mirror.)</P>
  783. <P>When verifying an existing encrypted string you should use the encrypted
  784. text as the salt (like <A HREF="#item_crypt"><CODE>crypt($plain, $crypted) eq $crypted</CODE></A>).  This
  785. allows your code to work with the standard <A HREF="#item_crypt"><CODE>crypt</CODE></A> and with more
  786. exotic implementations.  When choosing a new salt create a random two
  787. character string whose characters come from the set <CODE>[./0-9A-Za-z]</CODE>
  788. (like <CODE>join '', ('.', '/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]</CODE>).</P>
  789. <P>Here's an example that makes sure that whoever runs this program knows
  790. their own password:</P>
  791. <PRE>
  792.     $pwd = (getpwuid($<))[1];</PRE>
  793. <PRE>
  794.     system "stty -echo";
  795.     print "Password: ";
  796.     chomp($word = <STDIN>);
  797.     print "\n";
  798.     system "stty echo";</PRE>
  799. <PRE>
  800.     if (crypt($word, $pwd) ne $pwd) {
  801.         die "Sorry...\n";
  802.     } else {
  803.         print "ok\n";
  804.     }</PRE>
  805. <P>Of course, typing in your own password to whoever asks you
  806. for it is unwise.</P>
  807. <P>The <A HREF="#item_crypt">crypt</A> function is unsuitable for encrypting large quantities
  808. of data, not least of all because you can't get the information
  809. back.  Look at the <EM>by-module/Crypt</EM> and <EM>by-module/PGP</EM> directories
  810. on your favorite CPAN mirror for a slew of potentially useful
  811. modules.</P>
  812. <P></P>
  813. <DT><STRONG><A NAME="item_dbmclose">dbmclose HASH</A></STRONG><BR>
  814. <DD>
  815. [This function has been largely superseded by the <A HREF="#item_untie"><CODE>untie</CODE></A> function.]
  816. <P>Breaks the binding between a DBM file and a hash.</P>
  817. <P></P>
  818. <DT><STRONG><A NAME="item_dbmopen">dbmopen HASH,DBNAME,MASK</A></STRONG><BR>
  819. <DD>
  820. [This function has been largely superseded by the <A HREF="#item_tie"><CODE>tie</CODE></A> function.]
  821. <P>This binds a dbm(3), ndbm(3), sdbm(3), gdbm(3), or Berkeley DB file to a
  822. hash.  HASH is the name of the hash.  (Unlike normal <A HREF="#item_open"><CODE>open</CODE></A>, the first
  823. argument is <EM>not</EM> a filehandle, even though it looks like one).  DBNAME
  824. is the name of the database (without the <EM>.dir</EM> or <EM>.pag</EM> extension if
  825. any).  If the database does not exist, it is created with protection
  826. specified by MASK (as modified by the <A HREF="#item_umask"><CODE>umask</CODE></A>).  If your system supports
  827. only the older DBM functions, you may perform only one <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A> in your
  828. program.  In older versions of Perl, if your system had neither DBM nor
  829. ndbm, calling <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A> produced a fatal error; it now falls back to
  830. sdbm(3).</P>
  831. <P>If you don't have write access to the DBM file, you can only read hash
  832. variables, not set them.  If you want to test whether you can write,
  833. either use file tests or try setting a dummy hash entry inside an <A HREF="#item_eval"><CODE>eval</CODE></A>,
  834. which will trap the error.</P>
  835. <P>Note that functions such as <A HREF="#item_keys"><CODE>keys</CODE></A> and <A HREF="#item_values"><CODE>values</CODE></A> may return huge lists
  836. when used on large DBM files.  You may prefer to use the <A HREF="#item_each"><CODE>each</CODE></A>
  837. function to iterate over large DBM files.  Example:</P>
  838. <PRE>
  839.     # print out history file offsets
  840.     dbmopen(%HIST,'/usr/lib/news/history',0666);
  841.     while (($key,$val) = each %HIST) {
  842.         print $key, ' = ', unpack('L',$val), "\n";
  843.     }
  844.     dbmclose(%HIST);</PRE>
  845. <P>See also <A HREF="../../lib/AnyDBM_File.html">the AnyDBM_File manpage</A> for a more general description of the pros and
  846. cons of the various dbm approaches, as well as <A HREF="../../lib/DB_File.html">the DB_File manpage</A> for a particularly
  847. rich implementation.</P>
  848. <P>You can control which DBM library you use by loading that library
  849. before you call dbmopen():</P>
  850. <PRE>
  851.     use DB_File;
  852.     dbmopen(%NS_Hist, "$ENV{HOME}/.netscape/history.db")
  853.         or die "Can't open netscape history file: $!";</PRE>
  854. <P></P>
  855. <DT><STRONG><A NAME="item_defined">defined EXPR</A></STRONG><BR>
  856. <DD>
  857. <DT><STRONG>defined</STRONG><BR>
  858. <DD>
  859. Returns a Boolean value telling whether EXPR has a value other than
  860. the undefined value <A HREF="#item_undef"><CODE>undef</CODE></A>.  If EXPR is not present, <CODE>$_</CODE> will be
  861. checked.
  862. <P>Many operations return <A HREF="#item_undef"><CODE>undef</CODE></A> to indicate failure, end of file,
  863. system error, uninitialized variable, and other exceptional
  864. conditions.  This function allows you to distinguish <A HREF="#item_undef"><CODE>undef</CODE></A> from
  865. other values.  (A simple Boolean test will not distinguish among
  866. <A HREF="#item_undef"><CODE>undef</CODE></A>, zero, the empty string, and <CODE>"0"</CODE>, which are all equally
  867. false.)  Note that since <A HREF="#item_undef"><CODE>undef</CODE></A> is a valid scalar, its presence
  868. doesn't <EM>necessarily</EM> indicate an exceptional condition: <A HREF="#item_pop"><CODE>pop</CODE></A>
  869. returns <A HREF="#item_undef"><CODE>undef</CODE></A> when its argument is an empty array, <EM>or</EM> when the
  870. element to return happens to be <A HREF="#item_undef"><CODE>undef</CODE></A>.</P>
  871. <P>You may also use <A HREF="#item_defined"><CODE>defined(&func)</CODE></A> to check whether subroutine <CODE>&func</CODE>
  872. has ever been defined.  The return value is unaffected by any forward
  873. declarations of <CODE>&foo</CODE>.</P>
  874. <P>Use of <A HREF="#item_defined"><CODE>defined</CODE></A> on aggregates (hashes and arrays) is deprecated.  It
  875. used to report whether memory for that aggregate has ever been
  876. allocated.  This behavior may disappear in future versions of Perl.
  877. You should instead use a simple test for size:</P>
  878. <PRE>
  879.     if (@an_array) { print "has array elements\n" }
  880.     if (%a_hash)   { print "has hash members\n"   }</PRE>
  881. <P>When used on a hash element, it tells you whether the value is defined,
  882. not whether the key exists in the hash.  Use <A HREF="#exists">exists</A> for the latter
  883. purpose.</P>
  884. <P>Examples:</P>
  885. <PRE>
  886.     print if defined $switch{'D'};
  887.     print "$val\n" while defined($val = pop(@ary));
  888.     die "Can't readlink $sym: $!"
  889.         unless defined($value = readlink $sym);
  890.     sub foo { defined &$bar ? &$bar(@_) : die "No bar"; }
  891.     $debugging = 0 unless defined $debugging;</PRE>
  892. <P>Note:  Many folks tend to overuse <A HREF="#item_defined"><CODE>defined</CODE></A>, and then are surprised to
  893. discover that the number <CODE>0</CODE> and <CODE>""</CODE> (the zero-length string) are, in fact,
  894. defined values.  For example, if you say</P>
  895. <PRE>
  896.     "ab" =~ /a(.*)b/;</PRE>
  897. <P>The pattern match succeeds, and <CODE>$1</CODE> is defined, despite the fact that it
  898. matched ``nothing''.  But it didn't really match nothing--rather, it
  899. matched something that happened to be zero characters long.  This is all
  900. very above-board and honest.  When a function returns an undefined value,
  901. it's an admission that it couldn't give you an honest answer.  So you
  902. should use <A HREF="#item_defined"><CODE>defined</CODE></A> only when you're questioning the integrity of what
  903. you're trying to do.  At other times, a simple comparison to <CODE>0</CODE> or <CODE>""</CODE> is
  904. what you want.</P>
  905. <P>See also <A HREF="#undef">undef</A>, <A HREF="#exists">exists</A>, <A HREF="#ref">ref</A>.</P>
  906. <P></P>
  907. <DT><STRONG><A NAME="item_delete">delete EXPR</A></STRONG><BR>
  908. <DD>
  909. Given an expression that specifies a hash element, array element, hash slice,
  910. or array slice, deletes the specified <CODE>element(s)</CODE> from the hash or array.
  911. In the case of an array, if the array elements happen to be at the end,
  912. the size of the array will shrink to the highest element that tests 
  913. true for <A HREF="#item_exists"><CODE>exists()</CODE></A> (or 0 if no such element exists).
  914. <P>Returns each element so deleted or the undefined value if there was no such
  915. element.  Deleting from <CODE>$ENV{}</CODE> modifies the environment.  Deleting from
  916. a hash tied to a DBM file deletes the entry from the DBM file.  Deleting
  917. from a <A HREF="#item_tie"><CODE>tie</CODE></A>d hash or array may not necessarily return anything.</P>
  918. <P>Deleting an array element effectively returns that position of the array
  919. to its initial, uninitialized state.  Subsequently testing for the same
  920. element with <A HREF="#item_exists"><CODE>exists()</CODE></A> will return false.  Note that deleting array
  921. elements in the middle of an array will not shift the index of the ones
  922. after them down--use <A HREF="#item_splice"><CODE>splice()</CODE></A> for that.  See <A HREF="#exists">exists</A>.</P>
  923. <P>The following (inefficiently) deletes all the values of %HASH and @ARRAY:</P>
  924. <PRE>
  925.     foreach $key (keys %HASH) {
  926.         delete $HASH{$key};
  927.     }</PRE>
  928. <PRE>
  929.     foreach $index (0 .. $#ARRAY) {
  930.         delete $ARRAY[$index];
  931.     }</PRE>
  932. <P>And so do these:</P>
  933. <PRE>
  934.     delete @HASH{keys %HASH};</PRE>
  935. <PRE>
  936.     delete @ARRAY[0 .. $#ARRAY];</PRE>
  937. <P>But both of these are slower than just assigning the empty list
  938. or undefining %HASH or @ARRAY:</P>
  939. <PRE>
  940.     %HASH = ();         # completely empty %HASH
  941.     undef %HASH;        # forget %HASH ever existed</PRE>
  942. <PRE>
  943.     @ARRAY = ();        # completely empty @ARRAY
  944.     undef @ARRAY;       # forget @ARRAY ever existed</PRE>
  945. <P>Note that the EXPR can be arbitrarily complicated as long as the final
  946. operation is a hash element, array element,  hash slice, or array slice
  947. lookup:</P>
  948. <PRE>
  949.     delete $ref->[$x][$y]{$key};
  950.     delete @{$ref->[$x][$y]}{$key1, $key2, @morekeys};</PRE>
  951. <PRE>
  952.     delete $ref->[$x][$y][$index];
  953.     delete @{$ref->[$x][$y]}[$index1, $index2, @moreindices];</PRE>
  954. <P></P>
  955. <DT><STRONG><A NAME="item_die">die LIST</A></STRONG><BR>
  956. <DD>
  957. Outside an <A HREF="#item_eval"><CODE>eval</CODE></A>, prints the value of LIST to <CODE>STDERR</CODE> and
  958. exits with the current value of <CODE>$!</CODE> (errno).  If <CODE>$!</CODE> is <CODE>0</CODE>,
  959. exits with the value of <CODE>($? >> 8)</CODE> (backtick `command`
  960. status).  If <CODE>($? >> 8)</CODE> is <CODE>0</CODE>, exits with <CODE>255</CODE>.  Inside
  961. an <A HREF="#item_eval"><CODE>eval(),</CODE></A> the error message is stuffed into <CODE>$@</CODE> and the
  962. <A HREF="#item_eval"><CODE>eval</CODE></A> is terminated with the undefined value.  This makes
  963. <A HREF="#item_die"><CODE>die</CODE></A> the way to raise an exception.
  964. <P>Equivalent examples:</P>
  965. <PRE>
  966.     die "Can't cd to spool: $!\n" unless chdir '/usr/spool/news';
  967.     chdir '/usr/spool/news' or die "Can't cd to spool: $!\n"</PRE>
  968. <P>If the value of EXPR does not end in a newline, the current script line
  969. number and input line number (if any) are also printed, and a newline
  970. is supplied.  Note that the ``input line number'' (also known as ``chunk'')
  971. is subject to whatever notion of ``line'' happens to be currently in
  972. effect, and is also available as the special variable <CODE>$.</CODE>.
  973. See <A HREF="../../lib/Pod/perlvar.html#$/">$/ in the perlvar manpage</A> and <A HREF="../../lib/Pod/perlvar.html#$.">$. in the perlvar manpage</A>.</P>
  974. <P>Hint: sometimes appending <CODE>", stopped"</CODE> to your message
  975. will cause it to make better sense when the string <CODE>"at foo line 123"</CODE> is
  976. appended.  Suppose you are running script ``canasta''.</P>
  977. <PRE>
  978.     die "/etc/games is no good";
  979.     die "/etc/games is no good, stopped";</PRE>
  980. <P>produce, respectively</P>
  981. <PRE>
  982.     /etc/games is no good at canasta line 123.
  983.     /etc/games is no good, stopped at canasta line 123.</PRE>
  984. <P>See also exit(), warn(), and the Carp module.</P>
  985. <P>If LIST is empty and <CODE>$@</CODE> already contains a value (typically from a
  986. previous eval) that value is reused after appending <CODE>"\t...propagated"</CODE>.
  987. This is useful for propagating exceptions:</P>
  988. <PRE>
  989.     eval { ... };
  990.     die unless $@ =~ /Expected exception/;</PRE>
  991. <P>If <CODE>$@</CODE> is empty then the string <CODE>"Died"</CODE> is used.</P>
  992. <P><A HREF="#item_die"><CODE>die()</CODE></A> can also be called with a reference argument.  If this happens to be
  993. trapped within an eval(), $@ contains the reference.  This behavior permits
  994. a more elaborate exception handling implementation using objects that
  995. maintain arbitary state about the nature of the exception.  Such a scheme
  996. is sometimes preferable to matching particular string values of $@ using
  997. regular expressions.  Here's an example:</P>
  998. <PRE>
  999.     eval { ... ; die Some::Module::Exception->new( FOO => "bar" ) };
  1000.     if ($@) {
  1001.         if (ref($@) && UNIVERSAL::isa($@,"Some::Module::Exception")) {
  1002.             # handle Some::Module::Exception
  1003.         }
  1004.         else {
  1005.             # handle all other possible exceptions
  1006.         }
  1007.     }</PRE>
  1008. <P>Because perl will stringify uncaught exception messages before displaying
  1009. them, you may want to overload stringification operations on such custom
  1010. exception objects.  See <A HREF="../../lib/overload.html">the overload manpage</A> for details about that.</P>
  1011. <P>You can arrange for a callback to be run just before the <A HREF="#item_die"><CODE>die</CODE></A>
  1012. does its deed, by setting the <CODE>$SIG{__DIE__}</CODE> hook.  The associated
  1013. handler will be called with the error text and can change the error
  1014. message, if it sees fit, by calling <A HREF="#item_die"><CODE>die</CODE></A> again.  See
  1015. <A HREF="../../lib/Pod/perlvar.html#$sig{expr}">$SIG{expr} in the perlvar manpage</A> for details on setting <CODE>%SIG</CODE> entries, and
  1016. <A HREF="#eval block">eval BLOCK</A> for some examples.  Although this feature was meant
  1017. to be run only right before your program was to exit, this is not
  1018. currently the case--the <CODE>$SIG{__DIE__}</CODE> hook is currently called
  1019. even inside eval()ed blocks/strings!  If one wants the hook to do
  1020. nothing in such situations, put</P>
  1021. <PRE>
  1022.         die @_ if $^S;</PRE>
  1023. <P>as the first line of the handler (see <A HREF="../../lib/Pod/perlvar.html#$^s">$^S in the perlvar manpage</A>).  Because
  1024. this promotes strange action at a distance, this counterintuitive
  1025. behavior may be fixed in a future release.</P>
  1026. <P></P>
  1027. <DT><STRONG><A NAME="item_do">do BLOCK</A></STRONG><BR>
  1028. <DD>
  1029. Not really a function.  Returns the value of the last command in the
  1030. sequence of commands indicated by BLOCK.  When modified by a loop
  1031. modifier, executes the BLOCK once before testing the loop condition.
  1032. (On other statements the loop modifiers test the conditional first.)
  1033. <P><A HREF="#item_do"><CODE>do BLOCK</CODE></A> does <EM>not</EM> count as a loop, so the loop control statements
  1034. <A HREF="#item_next"><CODE>next</CODE></A>, <A HREF="#item_last"><CODE>last</CODE></A>, or <A HREF="#item_redo"><CODE>redo</CODE></A> cannot be used to leave or restart the block.
  1035. See <A HREF="../../lib/Pod/perlsyn.html">the perlsyn manpage</A> for alternative strategies.</P>
  1036. <P></P>
  1037. <DT><STRONG><A NAME="item_SUBROUTINE">do <CODE>SUBROUTINE(LIST)</CODE></A></STRONG><BR>
  1038. <DD>
  1039. A deprecated form of subroutine call.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>.
  1040. <P></P>
  1041. <DT><STRONG>do EXPR</STRONG><BR>
  1042. <DD>
  1043. Uses the value of EXPR as a filename and executes the contents of the
  1044. file as a Perl script.  Its primary use is to include subroutines
  1045. from a Perl subroutine library.
  1046. <PRE>
  1047.     do 'stat.pl';</PRE>
  1048. <P>is just like</P>
  1049. <PRE>
  1050.     scalar eval `cat stat.pl`;</PRE>
  1051. <P>except that it's more efficient and concise, keeps track of the current
  1052. filename for error messages, searches the @INC libraries, and updates
  1053. <CODE>%INC</CODE> if the file is found.  See <A HREF="../../lib/Pod/perlvar.html#predefined names">Predefined Names in the perlvar manpage</A> for these
  1054. variables.  It also differs in that code evaluated with <A HREF="#item_do"><CODE>do FILENAME</CODE></A>
  1055. cannot see lexicals in the enclosing scope; <A HREF="#item_eval"><CODE>eval STRING</CODE></A> does.  It's the
  1056. same, however, in that it does reparse the file every time you call it,
  1057. so you probably don't want to do this inside a loop.</P>
  1058. <P>If <A HREF="#item_do"><CODE>do</CODE></A> cannot read the file, it returns undef and sets <CODE>$!</CODE> to the
  1059. error.  If <A HREF="#item_do"><CODE>do</CODE></A> can read the file but cannot compile it, it
  1060. returns undef and sets an error message in <CODE>$@</CODE>.   If the file is
  1061. successfully compiled, <A HREF="#item_do"><CODE>do</CODE></A> returns the value of the last expression
  1062. evaluated.</P>
  1063. <P>Note that inclusion of library modules is better done with the
  1064. <A HREF="#item_use"><CODE>use</CODE></A> and <A HREF="#item_require"><CODE>require</CODE></A> operators, which also do automatic error checking
  1065. and raise an exception if there's a problem.</P>
  1066. <P>You might like to use <A HREF="#item_do"><CODE>do</CODE></A> to read in a program configuration
  1067. file.  Manual error checking can be done this way:</P>
  1068. <PRE>
  1069.     # read in config files: system first, then user 
  1070.     for $file ("/share/prog/defaults.rc",
  1071.                "$ENV{HOME}/.someprogrc") 
  1072.    {
  1073.         unless ($return = do $file) {
  1074.             warn "couldn't parse $file: $@" if $@;
  1075.             warn "couldn't do $file: $!"    unless defined $return;
  1076.             warn "couldn't run $file"       unless $return;
  1077.         }
  1078.     }</PRE>
  1079. <P></P>
  1080. <DT><STRONG><A NAME="item_dump">dump LABEL</A></STRONG><BR>
  1081. <DD>
  1082. <DT><STRONG>dump</STRONG><BR>
  1083. <DD>
  1084. This function causes an immediate core dump.  See also the <STRONG>-u</STRONG>
  1085. command-line switch in <A HREF="../../lib/Pod/perlrun.html">the perlrun manpage</A>, which does the same thing.
  1086. Primarily this is so that you can use the <STRONG>undump</STRONG> program (not
  1087. supplied) to turn your core dump into an executable binary after
  1088. having initialized all your variables at the beginning of the
  1089. program.  When the new binary is executed it will begin by executing
  1090. a <A HREF="#item_goto"><CODE>goto LABEL</CODE></A> (with all the restrictions that <A HREF="#item_goto"><CODE>goto</CODE></A> suffers).
  1091. Think of it as a goto with an intervening core dump and reincarnation.
  1092. If <CODE>LABEL</CODE> is omitted, restarts the program from the top.
  1093. <P><STRONG>WARNING</STRONG>: Any files opened at the time of the dump will <EM>not</EM>
  1094. be open any more when the program is reincarnated, with possible
  1095. resulting confusion on the part of Perl.</P>
  1096. <P>This function is now largely obsolete, partly because it's very
  1097. hard to convert a core file into an executable, and because the
  1098. real compiler backends for generating portable bytecode and compilable
  1099. C code have superseded it.</P>
  1100. <P>If you're looking to use <A HREF="#item_dump">dump</A> to speed up your program, consider
  1101. generating bytecode or native C code as described in <EM>perlcc</EM>.  If
  1102. you're just trying to accelerate a CGI script, consider using the
  1103. <CODE>mod_perl</CODE> extension to <STRONG>Apache</STRONG>, or the CPAN module, Fast::CGI.
  1104. You might also consider autoloading or selfloading, which at least
  1105. make your program <EM>appear</EM> to run faster.</P>
  1106. <P></P>
  1107. <DT><STRONG><A NAME="item_each">each HASH</A></STRONG><BR>
  1108. <DD>
  1109. When called in list context, returns a 2-element list consisting of the
  1110. key and value for the next element of a hash, so that you can iterate over
  1111. it.  When called in scalar context, returns the key for only the ``next''
  1112. element in the hash.
  1113. <P>Entries are returned in an apparently random order.  The actual random
  1114. order is subject to change in future versions of perl, but it is guaranteed
  1115. to be in the same order as either the <A HREF="#item_keys"><CODE>keys</CODE></A> or <A HREF="#item_values"><CODE>values</CODE></A> function
  1116. would produce on the same (unmodified) hash.</P>
  1117. <P>When the hash is entirely read, a null array is returned in list context
  1118. (which when assigned produces a false (<CODE>0</CODE>) value), and <A HREF="#item_undef"><CODE>undef</CODE></A> in
  1119. scalar context.  The next call to <A HREF="#item_each"><CODE>each</CODE></A> after that will start iterating
  1120. again.  There is a single iterator for each hash, shared by all <A HREF="#item_each"><CODE>each</CODE></A>,
  1121. <A HREF="#item_keys"><CODE>keys</CODE></A>, and <A HREF="#item_values"><CODE>values</CODE></A> function calls in the program; it can be reset by
  1122. reading all the elements from the hash, or by evaluating <A HREF="#item_keys"><CODE>keys HASH</CODE></A> or
  1123. <A HREF="#item_values"><CODE>values HASH</CODE></A>.  If you add or delete elements of a hash while you're
  1124. iterating over it, you may get entries skipped or duplicated, so don't.</P>
  1125. <P>The following prints out your environment like the <CODE>printenv(1)</CODE> program,
  1126. only in a different order:</P>
  1127. <PRE>
  1128.     while (($key,$value) = each %ENV) {
  1129.         print "$key=$value\n";
  1130.     }</PRE>
  1131. <P>See also <A HREF="#item_keys"><CODE>keys</CODE></A>, <A HREF="#item_values"><CODE>values</CODE></A> and <A HREF="#item_sort"><CODE>sort</CODE></A>.</P>
  1132. <P></P>
  1133. <DT><STRONG><A NAME="item_eof">eof FILEHANDLE</A></STRONG><BR>
  1134. <DD>
  1135. <DT><STRONG>eof ()</STRONG><BR>
  1136. <DD>
  1137. <DT><STRONG>eof</STRONG><BR>
  1138. <DD>
  1139. Returns 1 if the next read on FILEHANDLE will return end of file, or if
  1140. FILEHANDLE is not open.  FILEHANDLE may be an expression whose value
  1141. gives the real filehandle.  (Note that this function actually
  1142. reads a character and then <CODE>ungetc</CODE>s it, so isn't very useful in an
  1143. interactive context.)  Do not read from a terminal file (or call
  1144. <A HREF="#item_eof"><CODE>eof(FILEHANDLE)</CODE></A> on it) after end-of-file is reached.  File types such
  1145. as terminals may lose the end-of-file condition if you do.
  1146. <P>An <A HREF="#item_eof"><CODE>eof</CODE></A> without an argument uses the last file read.  Using <A HREF="#item_eof"><CODE>eof()</CODE></A>
  1147. with empty parentheses is very different.  It refers to the pseudo file
  1148. formed from the files listed on the command line and accessed via the
  1149. <CODE><></CODE> operator.  Since <CODE><></CODE> isn't explicitly opened,
  1150. as a normal filehandle is, an <A HREF="#item_eof"><CODE>eof()</CODE></A> before <CODE><></CODE> has been
  1151. used will cause <CODE>@ARGV</CODE> to be examined to determine if input is
  1152. available.</P>
  1153. <P>In a <CODE>while (<>)</CODE> loop, <A HREF="#item_eof"><CODE>eof</CODE></A> or <A HREF="#item_eof"><CODE>eof(ARGV)</CODE></A> can be used to
  1154. detect the end of each file, <A HREF="#item_eof"><CODE>eof()</CODE></A> will only detect the end of the
  1155. last file.  Examples:</P>
  1156. <PRE>
  1157.     # reset line numbering on each input file
  1158.     while (<>) {
  1159.         next if /^\s*#/;        # skip comments 
  1160.         print "$.\t$_";
  1161.     } continue {
  1162.         close ARGV  if eof;     # Not eof()!
  1163.     }</PRE>
  1164. <PRE>
  1165.     # insert dashes just before last line of last file
  1166.     while (<>) {
  1167.         if (eof()) {            # check for end of current file
  1168.             print "--------------\n";
  1169.             close(ARGV);        # close or last; is needed if we
  1170.                                 # are reading from the terminal
  1171.         }
  1172.         print;
  1173.     }</PRE>
  1174. <P>Practical hint: you almost never need to use <A HREF="#item_eof"><CODE>eof</CODE></A> in Perl, because the
  1175. input operators typically return <A HREF="#item_undef"><CODE>undef</CODE></A> when they run out of data, or if
  1176. there was an error.</P>
  1177. <P></P>
  1178. <DT><STRONG><A NAME="item_eval">eval EXPR</A></STRONG><BR>
  1179. <DD>
  1180. <DT><STRONG>eval BLOCK</STRONG><BR>
  1181. <DD>
  1182. In the first form, the return value of EXPR is parsed and executed as if it
  1183. were a little Perl program.  The value of the expression (which is itself
  1184. determined within scalar context) is first parsed, and if there weren't any
  1185. errors, executed in the context of the current Perl program, so that any
  1186. variable settings or subroutine and format definitions remain afterwards.
  1187. Note that the value is parsed every time the eval executes.  If EXPR is
  1188. omitted, evaluates <CODE>$_</CODE>.  This form is typically used to delay parsing
  1189. and subsequent execution of the text of EXPR until run time.
  1190. <P>In the second form, the code within the BLOCK is parsed only once--at the
  1191. same time the code surrounding the eval itself was parsed--and executed
  1192. within the context of the current Perl program.  This form is typically
  1193. used to trap exceptions more efficiently than the first (see below), while
  1194. also providing the benefit of checking the code within BLOCK at compile
  1195. time.</P>
  1196. <P>The final semicolon, if any, may be omitted from the value of EXPR or within
  1197. the BLOCK.</P>
  1198. <P>In both forms, the value returned is the value of the last expression
  1199. evaluated inside the mini-program; a return statement may be also used, just
  1200. as with subroutines.  The expression providing the return value is evaluated
  1201. in void, scalar, or list context, depending on the context of the eval itself.
  1202. See <A HREF="#wantarray">wantarray</A> for more on how the evaluation context can be determined.</P>
  1203. <P>If there is a syntax error or runtime error, or a <A HREF="#item_die"><CODE>die</CODE></A> statement is
  1204. executed, an undefined value is returned by <A HREF="#item_eval"><CODE>eval</CODE></A>, and <CODE>$@</CODE> is set to the
  1205. error message.  If there was no error, <CODE>$@</CODE> is guaranteed to be a null
  1206. string.  Beware that using <A HREF="#item_eval"><CODE>eval</CODE></A> neither silences perl from printing
  1207. warnings to STDERR, nor does it stuff the text of warning messages into <CODE>$@</CODE>.
  1208. To do either of those, you have to use the <CODE>$SIG{__WARN__}</CODE> facility.  See
  1209. <A HREF="#warn">warn</A> and <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>.</P>
  1210. <P>Note that, because <A HREF="#item_eval"><CODE>eval</CODE></A> traps otherwise-fatal errors, it is useful for
  1211. determining whether a particular feature (such as <A HREF="#item_socket"><CODE>socket</CODE></A> or <A HREF="#item_symlink"><CODE>symlink</CODE></A>)
  1212. is implemented.  It is also Perl's exception trapping mechanism, where
  1213. the die operator is used to raise exceptions.</P>
  1214. <P>If the code to be executed doesn't vary, you may use the eval-BLOCK
  1215. form to trap run-time errors without incurring the penalty of
  1216. recompiling each time.  The error, if any, is still returned in <CODE>$@</CODE>.
  1217. Examples:</P>
  1218. <PRE>
  1219.     # make divide-by-zero nonfatal
  1220.     eval { $answer = $a / $b; }; warn $@ if $@;</PRE>
  1221. <PRE>
  1222.     # same thing, but less efficient
  1223.     eval '$answer = $a / $b'; warn $@ if $@;</PRE>
  1224. <PRE>
  1225.     # a compile-time error
  1226.     eval { $answer = };                 # WRONG</PRE>
  1227. <PRE>
  1228.     # a run-time error
  1229.     eval '$answer =';   # sets $@</PRE>
  1230. <P>Due to the current arguably broken state of <CODE>__DIE__</CODE> hooks, when using
  1231. the <A HREF="#item_eval"><CODE>eval{}</CODE></A> form as an exception trap in libraries, you may wish not
  1232. to trigger any <CODE>__DIE__</CODE> hooks that user code may have installed.
  1233. You can use the <CODE>local $SIG{__DIE__}</CODE> construct for this purpose,
  1234. as shown in this example:</P>
  1235. <PRE>
  1236.     # a very private exception trap for divide-by-zero
  1237.     eval { local $SIG{'__DIE__'}; $answer = $a / $b; };
  1238.     warn $@ if $@;</PRE>
  1239. <P>This is especially significant, given that <CODE>__DIE__</CODE> hooks can call
  1240. <A HREF="#item_die"><CODE>die</CODE></A> again, which has the effect of changing their error messages:</P>
  1241. <PRE>
  1242.     # __DIE__ hooks may modify error messages
  1243.     {
  1244.        local $SIG{'__DIE__'} =
  1245.               sub { (my $x = $_[0]) =~ s/foo/bar/g; die $x };
  1246.        eval { die "foo lives here" };
  1247.        print $@ if $@;                # prints "bar lives here"
  1248.     }</PRE>
  1249. <P>Because this promotes action at a distance, this counterintuitive behavior
  1250. may be fixed in a future release.</P>
  1251. <P>With an <A HREF="#item_eval"><CODE>eval</CODE></A>, you should be especially careful to remember what's
  1252. being looked at when:</P>
  1253. <PRE>
  1254.     eval $x;            # CASE 1
  1255.     eval "$x";          # CASE 2</PRE>
  1256. <PRE>
  1257.     eval '$x';          # CASE 3
  1258.     eval { $x };        # CASE 4</PRE>
  1259. <PRE>
  1260.     eval "\$$x++";      # CASE 5
  1261.     $$x++;              # CASE 6</PRE>
  1262. <P>Cases 1 and 2 above behave identically: they run the code contained in
  1263. the variable $x.  (Although case 2 has misleading double quotes making
  1264. the reader wonder what else might be happening (nothing is).)  Cases 3
  1265. and 4 likewise behave in the same way: they run the code <CODE>'$x'</CODE>, which
  1266. does nothing but return the value of $x.  (Case 4 is preferred for
  1267. purely visual reasons, but it also has the advantage of compiling at
  1268. compile-time instead of at run-time.)  Case 5 is a place where
  1269. normally you <EM>would</EM> like to use double quotes, except that in this
  1270. particular situation, you can just use symbolic references instead, as
  1271. in case 6.</P>
  1272. <P><A HREF="#item_eval"><CODE>eval BLOCK</CODE></A> does <EM>not</EM> count as a loop, so the loop control statements
  1273. <A HREF="#item_next"><CODE>next</CODE></A>, <A HREF="#item_last"><CODE>last</CODE></A>, or <A HREF="#item_redo"><CODE>redo</CODE></A> cannot be used to leave or restart the block.</P>
  1274. <P></P>
  1275. <DT><STRONG><A NAME="item_exec">exec LIST</A></STRONG><BR>
  1276. <DD>
  1277. <DT><STRONG>exec PROGRAM LIST</STRONG><BR>
  1278. <DD>
  1279. The <A HREF="#item_exec"><CODE>exec</CODE></A> function executes a system command <EM>and never returns</EM>--
  1280. use <A HREF="#item_system"><CODE>system</CODE></A> instead of <A HREF="#item_exec"><CODE>exec</CODE></A> if you want it to return.  It fails and
  1281. returns false only if the command does not exist <EM>and</EM> it is executed
  1282. directly instead of via your system's command shell (see below).
  1283. <P>Since it's a common mistake to use <A HREF="#item_exec"><CODE>exec</CODE></A> instead of <A HREF="#item_system"><CODE>system</CODE></A>, Perl
  1284. warns you if there is a following statement which isn't <A HREF="#item_die"><CODE>die</CODE></A>, <A HREF="#item_warn"><CODE>warn</CODE></A>,
  1285. or <A HREF="#item_exit"><CODE>exit</CODE></A> (if <CODE>-w</CODE> is set  -  but you always do that).   If you
  1286. <EM>really</EM> want to follow an <A HREF="#item_exec"><CODE>exec</CODE></A> with some other statement, you
  1287. can use one of these styles to avoid the warning:</P>
  1288. <PRE>
  1289.     exec ('foo')   or print STDERR "couldn't exec foo: $!";
  1290.     { exec ('foo') }; print STDERR "couldn't exec foo: $!";</PRE>
  1291. <P>If there is more than one argument in LIST, or if LIST is an array
  1292. with more than one value, calls <CODE>execvp(3)</CODE> with the arguments in LIST.
  1293. If there is only one scalar argument or an array with one element in it,
  1294. the argument is checked for shell metacharacters, and if there are any,
  1295. the entire argument is passed to the system's command shell for parsing
  1296. (this is <CODE>/bin/sh -c</CODE> on Unix platforms, but varies on other platforms).
  1297. If there are no shell metacharacters in the argument, it is split into
  1298. words and passed directly to <CODE>execvp</CODE>, which is more efficient.  
  1299. Examples:</P>
  1300. <PRE>
  1301.     exec '/bin/echo', 'Your arguments are: ', @ARGV;
  1302.     exec "sort $outfile | uniq";</PRE>
  1303. <P>If you don't really want to execute the first argument, but want to lie
  1304. to the program you are executing about its own name, you can specify
  1305. the program you actually want to run as an ``indirect object'' (without a
  1306. comma) in front of the LIST.  (This always forces interpretation of the
  1307. LIST as a multivalued list, even if there is only a single scalar in
  1308. the list.)  Example:</P>
  1309. <PRE>
  1310.     $shell = '/bin/csh';
  1311.     exec $shell '-sh';          # pretend it's a login shell</PRE>
  1312. <P>or, more directly,</P>
  1313. <PRE>
  1314.     exec {'/bin/csh'} '-sh';    # pretend it's a login shell</PRE>
  1315. <P>When the arguments get executed via the system shell, results will
  1316. be subject to its quirks and capabilities.  See <A HREF="../../lib/Pod/perlop.html#`string`">`STRING` in the perlop manpage</A>
  1317. for details.</P>
  1318. <P>Using an indirect object with <A HREF="#item_exec"><CODE>exec</CODE></A> or <A HREF="#item_system"><CODE>system</CODE></A> is also more
  1319. secure.  This usage (which also works fine with <A HREF="#item_system"><CODE>system())</CODE></A> forces
  1320. interpretation of the arguments as a multivalued list, even if the
  1321. list had just one argument.  That way you're safe from the shell
  1322. expanding wildcards or splitting up words with whitespace in them.</P>
  1323. <PRE>
  1324.     @args = ( "echo surprise" );</PRE>
  1325. <PRE>
  1326.     exec @args;               # subject to shell escapes
  1327.                                 # if @args == 1
  1328.     exec { $args[0] } @args;  # safe even with one-arg list</PRE>
  1329. <P>The first version, the one without the indirect object, ran the <EM>echo</EM>
  1330. program, passing it <CODE>"surprise"</CODE> an argument.  The second version
  1331. didn't--it tried to run a program literally called <EM>``echo surprise''</EM>,
  1332. didn't find it, and set <CODE>$?</CODE> to a non-zero value indicating failure.</P>
  1333. <P>Beginning with v5.6.0, Perl will attempt to flush all files opened for
  1334. output before the exec, but this may not be supported on some platforms
  1335. (see <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>).  To be safe, you may need to set <CODE>$|</CODE> ($AUTOFLUSH
  1336. in English) or call the <A HREF="../../lib/Pod/perlvar.html#item_autoflush"><CODE>autoflush()</CODE></A> method of <CODE>IO::Handle</CODE> on any
  1337. open handles in order to avoid lost output.</P>
  1338. <P>Note that <A HREF="#item_exec"><CODE>exec</CODE></A> will not call your <CODE>END</CODE> blocks, nor will it call
  1339. any <CODE>DESTROY</CODE> methods in your objects.</P>
  1340. <P></P>
  1341. <DT><STRONG><A NAME="item_exists">exists EXPR</A></STRONG><BR>
  1342. <DD>
  1343. Given an expression that specifies a hash element or array element,
  1344. returns true if the specified element in the hash or array has ever
  1345. been initialized, even if the corresponding value is undefined.  The
  1346. element is not autovivified if it doesn't exist.
  1347. <PRE>
  1348.     print "Exists\n"    if exists $hash{$key};
  1349.     print "Defined\n"   if defined $hash{$key};
  1350.     print "True\n"      if $hash{$key};</PRE>
  1351. <PRE>
  1352.     print "Exists\n"    if exists $array[$index];
  1353.     print "Defined\n"   if defined $array[$index];
  1354.     print "True\n"      if $array[$index];</PRE>
  1355. <P>A hash or array element can be true only if it's defined, and defined if
  1356. it exists, but the reverse doesn't necessarily hold true.</P>
  1357. <P>Given an expression that specifies the name of a subroutine,
  1358. returns true if the specified subroutine has ever been declared, even
  1359. if it is undefined.  Mentioning a subroutine name for exists or defined
  1360. does not count as declaring it.</P>
  1361. <PRE>
  1362.     print "Exists\n"    if exists &subroutine;
  1363.     print "Defined\n"   if defined &subroutine;</PRE>
  1364. <P>Note that the EXPR can be arbitrarily complicated as long as the final
  1365. operation is a hash or array key lookup or subroutine name:</P>
  1366. <PRE>
  1367.     if (exists $ref->{A}->{B}->{$key})  { }
  1368.     if (exists $hash{A}{B}{$key})       { }</PRE>
  1369. <PRE>
  1370.     if (exists $ref->{A}->{B}->[$ix])   { }
  1371.     if (exists $hash{A}{B}[$ix])        { }</PRE>
  1372. <PRE>
  1373.     if (exists &{$ref->{A}{B}{$key}})   { }</PRE>
  1374. <P>Although the deepest nested array or hash will not spring into existence
  1375. just because its existence was tested, any intervening ones will.
  1376. Thus <CODE>$ref->{"A"}</CODE> and <CODE>$ref->{"A"}->{"B"}</CODE> will spring
  1377. into existence due to the existence test for the $key element above.
  1378. This happens anywhere the arrow operator is used, including even:</P>
  1379. <PRE>
  1380.     undef $ref;
  1381.     if (exists $ref->{"Some key"})      { }
  1382.     print $ref;             # prints HASH(0x80d3d5c)</PRE>
  1383. <P>This surprising autovivification in what does not at first--or even
  1384. second--glance appear to be an lvalue context may be fixed in a future
  1385. release.</P>
  1386. <P>See <A HREF="../../lib/Pod/perlref.html#pseudohashes: using an array as a hash">Pseudo-hashes: Using an array as a hash in the perlref manpage</A> for specifics
  1387. on how <A HREF="#item_exists"><CODE>exists()</CODE></A> acts when used on a pseudo-hash.</P>
  1388. <P>Use of a subroutine call, rather than a subroutine name, as an argument
  1389. to <A HREF="#item_exists"><CODE>exists()</CODE></A> is an error.</P>
  1390. <PRE>
  1391.     exists &sub;        # OK
  1392.     exists &sub();      # Error</PRE>
  1393. <P></P>
  1394. <DT><STRONG><A NAME="item_exit">exit EXPR</A></STRONG><BR>
  1395. <DD>
  1396. Evaluates EXPR and exits immediately with that value.    Example:
  1397. <PRE>
  1398.     $ans = <STDIN>;
  1399.     exit 0 if $ans =~ /^[Xx]/;</PRE>
  1400. <P>See also <A HREF="#item_die"><CODE>die</CODE></A>.  If EXPR is omitted, exits with <CODE>0</CODE> status.  The only
  1401. universally recognized values for EXPR are <CODE>0</CODE> for success and <CODE>1</CODE>
  1402. for error; other values are subject to interpretation depending on the
  1403. environment in which the Perl program is running.  For example, exiting
  1404. 69 (EX_UNAVAILABLE) from a <EM>sendmail</EM> incoming-mail filter will cause
  1405. the mailer to return the item undelivered, but that's not true everywhere.</P>
  1406. <P>Don't use <A HREF="#item_exit"><CODE>exit</CODE></A> to abort a subroutine if there's any chance that
  1407. someone might want to trap whatever error happened.  Use <A HREF="#item_die"><CODE>die</CODE></A> instead,
  1408. which can be trapped by an <A HREF="#item_eval"><CODE>eval</CODE></A>.</P>
  1409. <P>The <A HREF="#item_exit"><CODE>exit()</CODE></A> function does not always exit immediately.  It calls any
  1410. defined <CODE>END</CODE> routines first, but these <CODE>END</CODE> routines may not
  1411. themselves abort the exit.  Likewise any object destructors that need to
  1412. be called are called before the real exit.  If this is a problem, you
  1413. can call <CODE>POSIX:_exit($status)</CODE> to avoid END and destructor processing.
  1414. See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A> for details.</P>
  1415. <P></P>
  1416. <DT><STRONG><A NAME="item_exp">exp EXPR</A></STRONG><BR>
  1417. <DD>
  1418. <DT><STRONG>exp</STRONG><BR>
  1419. <DD>
  1420. Returns <EM>e</EM> (the natural logarithm base) to the power of EXPR.  
  1421. If EXPR is omitted, gives <A HREF="#item_exp"><CODE>exp($_)</CODE></A>.
  1422. <P></P>
  1423. <DT><STRONG><A NAME="item_fcntl">fcntl FILEHANDLE,FUNCTION,SCALAR</A></STRONG><BR>
  1424. <DD>
  1425. Implements the <A HREF="#item_fcntl"><CODE>fcntl(2)</CODE></A> function.  You'll probably have to say
  1426. <PRE>
  1427.     use Fcntl;</PRE>
  1428. <P>first to get the correct constant definitions.  Argument processing and
  1429. value return works just like <A HREF="#item_ioctl"><CODE>ioctl</CODE></A> below.  
  1430. For example:</P>
  1431. <PRE>
  1432.     use Fcntl;
  1433.     fcntl($filehandle, F_GETFL, $packed_return_buffer)
  1434.         or die "can't fcntl F_GETFL: $!";</PRE>
  1435. <P>You don't have to check for <A HREF="#item_defined"><CODE>defined</CODE></A> on the return from <CODE>fnctl</CODE>.
  1436. Like <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>, it maps a <CODE>0</CODE> return from the system call into
  1437. <CODE>"0 but true"</CODE> in Perl.  This string is true in boolean context and <CODE>0</CODE>
  1438. in numeric context.  It is also exempt from the normal <STRONG>-w</STRONG> warnings
  1439. on improper numeric conversions.</P>
  1440. <P>Note that <A HREF="#item_fcntl"><CODE>fcntl</CODE></A> will produce a fatal error if used on a machine that
  1441. doesn't implement fcntl(2).  See the Fcntl module or your <A HREF="#item_fcntl"><CODE>fcntl(2)</CODE></A>
  1442. manpage to learn what functions are available on your system.</P>
  1443. <P></P>
  1444. <DT><STRONG><A NAME="item_fileno">fileno FILEHANDLE</A></STRONG><BR>
  1445. <DD>
  1446. Returns the file descriptor for a filehandle, or undefined if the
  1447. filehandle is not open.  This is mainly useful for constructing
  1448. bitmaps for <A HREF="#item_select"><CODE>select</CODE></A> and low-level POSIX tty-handling operations.
  1449. If FILEHANDLE is an expression, the value is taken as an indirect
  1450. filehandle, generally its name.
  1451. <P>You can use this to find out whether two handles refer to the 
  1452. same underlying descriptor:</P>
  1453. <PRE>
  1454.     if (fileno(THIS) == fileno(THAT)) {
  1455.         print "THIS and THAT are dups\n";
  1456.     }</PRE>
  1457. <P></P>
  1458. <DT><STRONG><A NAME="item_flock">flock FILEHANDLE,OPERATION</A></STRONG><BR>
  1459. <DD>
  1460. Calls flock(2), or an emulation of it, on FILEHANDLE.  Returns true
  1461. for success, false on failure.  Produces a fatal error if used on a
  1462. machine that doesn't implement flock(2), <A HREF="#item_fcntl"><CODE>fcntl(2)</CODE></A> locking, or lockf(3).
  1463. <A HREF="#item_flock"><CODE>flock</CODE></A> is Perl's portable file locking interface, although it locks
  1464. only entire files, not records.
  1465. <P>Two potentially non-obvious but traditional <A HREF="#item_flock"><CODE>flock</CODE></A> semantics are
  1466. that it waits indefinitely until the lock is granted, and that its locks
  1467. <STRONG>merely advisory</STRONG>.  Such discretionary locks are more flexible, but offer
  1468. fewer guarantees.  This means that files locked with <A HREF="#item_flock"><CODE>flock</CODE></A> may be
  1469. modified by programs that do not also use <A HREF="#item_flock"><CODE>flock</CODE></A>.  See <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>,
  1470. your port's specific documentation, or your system-specific local manpages
  1471. for details.  It's best to assume traditional behavior if you're writing
  1472. portable programs.  (But if you're not, you should as always feel perfectly
  1473. free to write for your own system's idiosyncrasies (sometimes called
  1474. ``features'').  Slavish adherence to portability concerns shouldn't get
  1475. in the way of your getting your job done.)</P>
  1476. <P>OPERATION is one of LOCK_SH, LOCK_EX, or LOCK_UN, possibly combined with
  1477. LOCK_NB.  These constants are traditionally valued 1, 2, 8 and 4, but
  1478. you can use the symbolic names if you import them from the Fcntl module,
  1479. either individually, or as a group using the ':flock' tag.  LOCK_SH
  1480. requests a shared lock, LOCK_EX requests an exclusive lock, and LOCK_UN
  1481. releases a previously requested lock.  If LOCK_NB is bitwise-or'ed with
  1482. LOCK_SH or LOCK_EX then <A HREF="#item_flock"><CODE>flock</CODE></A> will return immediately rather than blocking
  1483. waiting for the lock (check the return status to see if you got it).</P>
  1484. <P>To avoid the possibility of miscoordination, Perl now flushes FILEHANDLE
  1485. before locking or unlocking it.</P>
  1486. <P>Note that the emulation built with <CODE>lockf(3)</CODE> doesn't provide shared
  1487. locks, and it requires that FILEHANDLE be open with write intent.  These
  1488. are the semantics that <CODE>lockf(3)</CODE> implements.  Most if not all systems
  1489. implement <CODE>lockf(3)</CODE> in terms of <A HREF="#item_fcntl"><CODE>fcntl(2)</CODE></A> locking, though, so the
  1490. differing semantics shouldn't bite too many people.</P>
  1491. <P>Note also that some versions of <A HREF="#item_flock"><CODE>flock</CODE></A> cannot lock things over the
  1492. network; you would need to use the more system-specific <A HREF="#item_fcntl"><CODE>fcntl</CODE></A> for
  1493. that.  If you like you can force Perl to ignore your system's <A HREF="#item_flock"><CODE>flock(2)</CODE></A>
  1494. function, and so provide its own fcntl(2)-based emulation, by passing
  1495. the switch <CODE>-Ud_flock</CODE> to the <EM>Configure</EM> program when you configure
  1496. perl.</P>
  1497. <P>Here's a mailbox appender for BSD systems.</P>
  1498. <PRE>
  1499.     use Fcntl ':flock'; # import LOCK_* constants</PRE>
  1500. <PRE>
  1501.     sub lock {
  1502.         flock(MBOX,LOCK_EX);
  1503.         # and, in case someone appended
  1504.         # while we were waiting...
  1505.         seek(MBOX, 0, 2);
  1506.     }</PRE>
  1507. <PRE>
  1508.     sub unlock {
  1509.         flock(MBOX,LOCK_UN);
  1510.     }</PRE>
  1511. <PRE>
  1512.     open(MBOX, ">>/usr/spool/mail/$ENV{'USER'}")
  1513.             or die "Can't open mailbox: $!";</PRE>
  1514. <PRE>
  1515.     lock();
  1516.     print MBOX $msg,"\n\n";
  1517.     unlock();</PRE>
  1518. <P>On systems that support a real flock(), locks are inherited across <A HREF="#item_fork"><CODE>fork()</CODE></A>
  1519. calls, whereas those that must resort to the more capricious <A HREF="#item_fcntl"><CODE>fcntl()</CODE></A>
  1520. function lose the locks, making it harder to write servers.</P>
  1521. <P>See also <A HREF="../../lib/DB_File.html">the DB_File manpage</A> for other <A HREF="#item_flock"><CODE>flock()</CODE></A> examples.</P>
  1522. <P></P>
  1523. <DT><STRONG><A NAME="item_fork">fork</A></STRONG><BR>
  1524. <DD>
  1525. Does a <A HREF="#item_fork"><CODE>fork(2)</CODE></A> system call to create a new process running the
  1526. same program at the same point.  It returns the child pid to the
  1527. parent process, <CODE>0</CODE> to the child process, or <A HREF="#item_undef"><CODE>undef</CODE></A> if the fork is
  1528. unsuccessful.  File descriptors (and sometimes locks on those descriptors)
  1529. are shared, while everything else is copied.  On most systems supporting
  1530. fork(), great care has gone into making it extremely efficient (for
  1531. example, using copy-on-write technology on data pages), making it the
  1532. dominant paradigm for multitasking over the last few decades.
  1533. <P>Beginning with v5.6.0, Perl will attempt to flush all files opened for
  1534. output before forking the child process, but this may not be supported
  1535. on some platforms (see <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>).  To be safe, you may need to set
  1536. <CODE>$|</CODE> ($AUTOFLUSH in English) or call the <A HREF="../../lib/Pod/perlvar.html#item_autoflush"><CODE>autoflush()</CODE></A> method of
  1537. <CODE>IO::Handle</CODE> on any open handles in order to avoid duplicate output.</P>
  1538. <P>If you <A HREF="#item_fork"><CODE>fork</CODE></A> without ever waiting on your children, you will
  1539. accumulate zombies.  On some systems, you can avoid this by setting
  1540. <CODE>$SIG{CHLD}</CODE> to <CODE>"IGNORE"</CODE>.  See also <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A> for more examples of
  1541. forking and reaping moribund children.</P>
  1542. <P>Note that if your forked child inherits system file descriptors like
  1543. STDIN and STDOUT that are actually connected by a pipe or socket, even
  1544. if you exit, then the remote server (such as, say, a CGI script or a
  1545. backgrounded job launched from a remote shell) won't think you're done.
  1546. You should reopen those to <EM>/dev/null</EM> if it's any issue.</P>
  1547. <P></P>
  1548. <DT><STRONG><A NAME="item_format">format</A></STRONG><BR>
  1549. <DD>
  1550. Declare a picture format for use by the <A HREF="#item_write"><CODE>write</CODE></A> function.  For
  1551. example:
  1552. <PRE>
  1553.     format Something =
  1554.         Test: @<<<<<<<< @||||| @>>>>>
  1555.               $str,     $%,    '$' . int($num)
  1556.     .</PRE>
  1557. <PRE>
  1558.     $str = "widget";
  1559.     $num = $cost/$quantity;
  1560.     $~ = 'Something';
  1561.     write;</PRE>
  1562. <P>See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A> for many details and examples.</P>
  1563. <P></P>
  1564. <DT><STRONG><A NAME="item_formline">formline PICTURE,LIST</A></STRONG><BR>
  1565. <DD>
  1566. This is an internal function used by <A HREF="#item_format"><CODE>format</CODE></A>s, though you may call it,
  1567. too.  It formats (see <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>) a list of values according to the
  1568. contents of PICTURE, placing the output into the format output
  1569. accumulator, <CODE>$^A</CODE> (or <CODE>$ACCUMULATOR</CODE> in English).
  1570. Eventually, when a <A HREF="#item_write"><CODE>write</CODE></A> is done, the contents of
  1571. <CODE>$^A</CODE> are written to some filehandle, but you could also read <CODE>$^A</CODE>
  1572. yourself and then set <CODE>$^A</CODE> back to <CODE>""</CODE>.  Note that a format typically
  1573. does one <A HREF="#item_formline"><CODE>formline</CODE></A> per line of form, but the <A HREF="#item_formline"><CODE>formline</CODE></A> function itself
  1574. doesn't care how many newlines are embedded in the PICTURE.  This means
  1575. that the <CODE>~</CODE> and <CODE>~~</CODE> tokens will treat the entire PICTURE as a single line.
  1576. You may therefore need to use multiple formlines to implement a single
  1577. record format, just like the format compiler.
  1578. <P>Be careful if you put double quotes around the picture, because an <CODE>@</CODE>
  1579. character may be taken to mean the beginning of an array name.
  1580. <A HREF="#item_formline"><CODE>formline</CODE></A> always returns true.  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A> for other examples.</P>
  1581. <P></P>
  1582. <DT><STRONG><A NAME="item_getc">getc FILEHANDLE</A></STRONG><BR>
  1583. <DD>
  1584. <DT><STRONG>getc</STRONG><BR>
  1585. <DD>
  1586. Returns the next character from the input file attached to FILEHANDLE,
  1587. or the undefined value at end of file, or if there was an error.
  1588. If FILEHANDLE is omitted, reads from STDIN.  This is not particularly
  1589. efficient.  However, it cannot be used by itself to fetch single
  1590. characters without waiting for the user to hit enter.  For that, try
  1591. something more like:
  1592. <PRE>
  1593.     if ($BSD_STYLE) {
  1594.         system "stty cbreak </dev/tty >/dev/tty 2>&1";
  1595.     }
  1596.     else {
  1597.         system "stty", '-icanon', 'eol', "\001";
  1598.     }</PRE>
  1599. <PRE>
  1600.     $key = getc(STDIN);</PRE>
  1601. <PRE>
  1602.     if ($BSD_STYLE) {
  1603.         system "stty -cbreak </dev/tty >/dev/tty 2>&1";
  1604.     }
  1605.     else {
  1606.         system "stty", 'icanon', 'eol', '^@'; # ASCII null
  1607.     }
  1608.     print "\n";</PRE>
  1609. <P>Determination of whether $BSD_STYLE should be set
  1610. is left as an exercise to the reader.</P>
  1611. <P>The <CODE>POSIX::getattr</CODE> function can do this more portably on
  1612. systems purporting POSIX compliance.  See also the <CODE>Term::ReadKey</CODE>
  1613. module from your nearest CPAN site; details on CPAN can be found on
  1614. <A HREF="../../lib/Pod/perlmodlib.html#cpan">CPAN in the perlmodlib manpage</A>.</P>
  1615. <P></P>
  1616. <DT><STRONG><A NAME="item_getlogin">getlogin</A></STRONG><BR>
  1617. <DD>
  1618. Implements the C library function of the same name, which on most
  1619. systems returns the current login from <EM>/etc/utmp</EM>, if any.  If null,
  1620. use <A HREF="#item_getpwuid"><CODE>getpwuid</CODE></A>.
  1621. <PRE>
  1622.     $login = getlogin || getpwuid($<) || "Kilroy";</PRE>
  1623. <P>Do not consider <A HREF="#item_getlogin"><CODE>getlogin</CODE></A> for authentication: it is not as
  1624. secure as <A HREF="#item_getpwuid"><CODE>getpwuid</CODE></A>.</P>
  1625. <P></P>
  1626. <DT><STRONG><A NAME="item_getpeername">getpeername SOCKET</A></STRONG><BR>
  1627. <DD>
  1628. Returns the packed sockaddr address of other end of the SOCKET connection.
  1629. <PRE>
  1630.     use Socket;
  1631.     $hersockaddr    = getpeername(SOCK);
  1632.     ($port, $iaddr) = sockaddr_in($hersockaddr);
  1633.     $herhostname    = gethostbyaddr($iaddr, AF_INET);
  1634.     $herstraddr     = inet_ntoa($iaddr);</PRE>
  1635. <P></P>
  1636. <DT><STRONG><A NAME="item_getpgrp">getpgrp PID</A></STRONG><BR>
  1637. <DD>
  1638. Returns the current process group for the specified PID.  Use
  1639. a PID of <CODE>0</CODE> to get the current process group for the
  1640. current process.  Will raise an exception if used on a machine that
  1641. doesn't implement getpgrp(2).  If PID is omitted, returns process
  1642. group of current process.  Note that the POSIX version of <A HREF="#item_getpgrp"><CODE>getpgrp</CODE></A>
  1643. does not accept a PID argument, so only <CODE>PID==0</CODE> is truly portable.
  1644. <P></P>
  1645. <DT><STRONG><A NAME="item_getppid">getppid</A></STRONG><BR>
  1646. <DD>
  1647. Returns the process id of the parent process.
  1648. <P></P>
  1649. <DT><STRONG><A NAME="item_getpriority">getpriority WHICH,WHO</A></STRONG><BR>
  1650. <DD>
  1651. Returns the current priority for a process, a process group, or a user.
  1652. (See <A HREF="#item_getpriority">getpriority(2)</A>.)  Will raise a fatal exception if used on a
  1653. machine that doesn't implement getpriority(2).
  1654. <P></P>
  1655. <DT><STRONG><A NAME="item_getpwnam">getpwnam NAME</A></STRONG><BR>
  1656. <DD>
  1657. <DT><STRONG><A NAME="item_getgrnam">getgrnam NAME</A></STRONG><BR>
  1658. <DD>
  1659. <DT><STRONG><A NAME="item_gethostbyname">gethostbyname NAME</A></STRONG><BR>
  1660. <DD>
  1661. <DT><STRONG><A NAME="item_getnetbyname">getnetbyname NAME</A></STRONG><BR>
  1662. <DD>
  1663. <DT><STRONG><A NAME="item_getprotobyname">getprotobyname NAME</A></STRONG><BR>
  1664. <DD>
  1665. <DT><STRONG><A NAME="item_getpwuid">getpwuid UID</A></STRONG><BR>
  1666. <DD>
  1667. <DT><STRONG><A NAME="item_getgrgid">getgrgid GID</A></STRONG><BR>
  1668. <DD>
  1669. <DT><STRONG><A NAME="item_getservbyname">getservbyname NAME,PROTO</A></STRONG><BR>
  1670. <DD>
  1671. <DT><STRONG><A NAME="item_gethostbyaddr">gethostbyaddr ADDR,ADDRTYPE</A></STRONG><BR>
  1672. <DD>
  1673. <DT><STRONG><A NAME="item_getnetbyaddr">getnetbyaddr ADDR,ADDRTYPE</A></STRONG><BR>
  1674. <DD>
  1675. <DT><STRONG><A NAME="item_getprotobynumber">getprotobynumber NUMBER</A></STRONG><BR>
  1676. <DD>
  1677. <DT><STRONG><A NAME="item_getservbyport">getservbyport PORT,PROTO</A></STRONG><BR>
  1678. <DD>
  1679. <DT><STRONG><A NAME="item_getpwent">getpwent</A></STRONG><BR>
  1680. <DD>
  1681. <DT><STRONG><A NAME="item_getgrent">getgrent</A></STRONG><BR>
  1682. <DD>
  1683. <DT><STRONG><A NAME="item_gethostent">gethostent</A></STRONG><BR>
  1684. <DD>
  1685. <DT><STRONG><A NAME="item_getnetent">getnetent</A></STRONG><BR>
  1686. <DD>
  1687. <DT><STRONG><A NAME="item_getprotoent">getprotoent</A></STRONG><BR>
  1688. <DD>
  1689. <DT><STRONG><A NAME="item_getservent">getservent</A></STRONG><BR>
  1690. <DD>
  1691. <DT><STRONG><A NAME="item_setpwent">setpwent</A></STRONG><BR>
  1692. <DD>
  1693. <DT><STRONG><A NAME="item_setgrent">setgrent</A></STRONG><BR>
  1694. <DD>
  1695. <DT><STRONG><A NAME="item_sethostent">sethostent STAYOPEN</A></STRONG><BR>
  1696. <DD>
  1697. <DT><STRONG><A NAME="item_setnetent">setnetent STAYOPEN</A></STRONG><BR>
  1698. <DD>
  1699. <DT><STRONG><A NAME="item_setprotoent">setprotoent STAYOPEN</A></STRONG><BR>
  1700. <DD>
  1701. <DT><STRONG><A NAME="item_setservent">setservent STAYOPEN</A></STRONG><BR>
  1702. <DD>
  1703. <DT><STRONG><A NAME="item_endpwent">endpwent</A></STRONG><BR>
  1704. <DD>
  1705. <DT><STRONG><A NAME="item_endgrent">endgrent</A></STRONG><BR>
  1706. <DD>
  1707. <DT><STRONG><A NAME="item_endhostent">endhostent</A></STRONG><BR>
  1708. <DD>
  1709. <DT><STRONG><A NAME="item_endnetent">endnetent</A></STRONG><BR>
  1710. <DD>
  1711. <DT><STRONG><A NAME="item_endprotoent">endprotoent</A></STRONG><BR>
  1712. <DD>
  1713. <DT><STRONG><A NAME="item_endservent">endservent</A></STRONG><BR>
  1714. <DD>
  1715. These routines perform the same functions as their counterparts in the
  1716. system library.  In list context, the return values from the
  1717. various get routines are as follows:
  1718. <PRE>
  1719.     ($name,$passwd,$uid,$gid,
  1720.        $quota,$comment,$gcos,$dir,$shell,$expire) = getpw*
  1721.     ($name,$passwd,$gid,$members) = getgr*
  1722.     ($name,$aliases,$addrtype,$length,@addrs) = gethost*
  1723.     ($name,$aliases,$addrtype,$net) = getnet*
  1724.     ($name,$aliases,$proto) = getproto*
  1725.     ($name,$aliases,$port,$proto) = getserv*</PRE>
  1726. <P>(If the entry doesn't exist you get a null list.)</P>
  1727. <P>The exact meaning of the $gcos field varies but it usually contains
  1728. the real name of the user (as opposed to the login name) and other
  1729. information pertaining to the user.  Beware, however, that in many
  1730. system users are able to change this information and therefore it
  1731. cannot be trusted and therefore the $gcos is is tainted (see
  1732. <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>).  The $passwd and $shell, user's encrypted password and
  1733. login shell, are also tainted, because of the same reason.</P>
  1734. <P>In scalar context, you get the name, unless the function was a
  1735. lookup by name, in which case you get the other thing, whatever it is.
  1736. (If the entry doesn't exist you get the undefined value.)  For example:</P>
  1737. <PRE>
  1738.     $uid   = getpwnam($name);
  1739.     $name  = getpwuid($num);
  1740.     $name  = getpwent();
  1741.     $gid   = getgrnam($name);
  1742.     $name  = getgrgid($num;
  1743.     $name  = getgrent();
  1744.     #etc.</PRE>
  1745. <P>In <EM>getpw*()</EM> the fields $quota, $comment, and $expire are special
  1746. cases in the sense that in many systems they are unsupported.  If the
  1747. $quota is unsupported, it is an empty scalar.  If it is supported, it
  1748. usually encodes the disk quota.  If the $comment field is unsupported,
  1749. it is an empty scalar.  If it is supported it usually encodes some
  1750. administrative comment about the user.  In some systems the $quota
  1751. field may be $change or $age, fields that have to do with password
  1752. aging.  In some systems the $comment field may be $class.  The $expire
  1753. field, if present, encodes the expiration period of the account or the
  1754. password.  For the availability and the exact meaning of these fields
  1755. in your system, please consult your <A HREF="#item_getpwnam"><CODE>getpwnam(3)</CODE></A> documentation and your
  1756. <EM>pwd.h</EM> file.  You can also find out from within Perl what your
  1757. $quota and $comment fields mean and whether you have the $expire field
  1758. by using the <CODE>Config</CODE> module and the values <CODE>d_pwquota</CODE>, <CODE>d_pwage</CODE>,
  1759. <CODE>d_pwchange</CODE>, <CODE>d_pwcomment</CODE>, and <CODE>d_pwexpire</CODE>.  Shadow password
  1760. files are only supported if your vendor has implemented them in the
  1761. intuitive fashion that calling the regular C library routines gets the
  1762. shadow versions if you're running under privilege.  Those that
  1763. incorrectly implement a separate library call are not supported.</P>
  1764. <P>The $members value returned by <EM>getgr*()</EM> is a space separated list of
  1765. the login names of the members of the group.</P>
  1766. <P>For the <EM>gethost*()</EM> functions, if the <CODE>h_errno</CODE> variable is supported in
  1767. C, it will be returned to you via <CODE>$?</CODE> if the function call fails.  The
  1768. <CODE>@addrs</CODE> value returned by a successful call is a list of the raw
  1769. addresses returned by the corresponding system library call.  In the
  1770. Internet domain, each address is four bytes long and you can unpack it
  1771. by saying something like:</P>
  1772. <PRE>
  1773.     ($a,$b,$c,$d) = unpack('C4',$addr[0]);</PRE>
  1774. <P>The Socket library makes this slightly easier:</P>
  1775. <PRE>
  1776.     use Socket;
  1777.     $iaddr = inet_aton("127.1"); # or whatever address
  1778.     $name  = gethostbyaddr($iaddr, AF_INET);</PRE>
  1779. <PRE>
  1780.     # or going the other way
  1781.     $straddr = inet_ntoa($iaddr);</PRE>
  1782. <P>If you get tired of remembering which element of the return list
  1783. contains which return value, by-name interfaces are provided
  1784. in standard modules: <CODE>File::stat</CODE>, <CODE>Net::hostent</CODE>, <CODE>Net::netent</CODE>,
  1785. <CODE>Net::protoent</CODE>, <CODE>Net::servent</CODE>, <CODE>Time::gmtime</CODE>, <CODE>Time::localtime</CODE>,
  1786. and <CODE>User::grent</CODE>.  These override the normal built-ins, supplying
  1787. versions that return objects with the appropriate names
  1788. for each field.  For example:</P>
  1789. <PRE>
  1790.    use File::stat;
  1791.    use User::pwent;
  1792.    $is_his = (stat($filename)->uid == pwent($whoever)->uid);</PRE>
  1793. <P>Even though it looks like they're the same method calls (uid), 
  1794. they aren't, because a <CODE>File::stat</CODE> object is different from 
  1795. a <CODE>User::pwent</CODE> object.</P>
  1796. <P></P>
  1797. <DT><STRONG><A NAME="item_getsockname">getsockname SOCKET</A></STRONG><BR>
  1798. <DD>
  1799. Returns the packed sockaddr address of this end of the SOCKET connection,
  1800. in case you don't know the address because you have several different
  1801. IPs that the connection might have come in on.
  1802. <PRE>
  1803.     use Socket;
  1804.     $mysockaddr = getsockname(SOCK);
  1805.     ($port, $myaddr) = sockaddr_in($mysockaddr);
  1806.     printf "Connect to %s [%s]\n", 
  1807.        scalar gethostbyaddr($myaddr, AF_INET),
  1808.        inet_ntoa($myaddr);</PRE>
  1809. <P></P>
  1810. <DT><STRONG><A NAME="item_getsockopt">getsockopt SOCKET,LEVEL,OPTNAME</A></STRONG><BR>
  1811. <DD>
  1812. Returns the socket option requested, or undef if there is an error.
  1813. <P></P>
  1814. <DT><STRONG><A NAME="item_glob">glob EXPR</A></STRONG><BR>
  1815. <DD>
  1816. <DT><STRONG>glob</STRONG><BR>
  1817. <DD>
  1818. Returns the value of EXPR with filename expansions such as the
  1819. standard Unix shell <EM>/bin/csh</EM> would do.  This is the internal function
  1820. implementing the <CODE><*.c></CODE> operator, but you can use it directly.
  1821. If EXPR is omitted, <CODE>$_</CODE> is used.  The <CODE><*.c></CODE> operator is
  1822. discussed in more detail in <A HREF="../../lib/Pod/perlop.html#i/o operators">I/O Operators in the perlop manpage</A>.
  1823. <P>Beginning with v5.6.0, this operator is implemented using the standard
  1824. <CODE>File::Glob</CODE> extension.  See <A HREF="../../lib/File/Glob.html">the File::Glob manpage</A> for details.</P>
  1825. <P></P>
  1826. <DT><STRONG><A NAME="item_gmtime">gmtime EXPR</A></STRONG><BR>
  1827. <DD>
  1828. Converts a time as returned by the time function to a 8-element list
  1829. with the time localized for the standard Greenwich time zone.
  1830. Typically used as follows:
  1831. <PRE>
  1832.     #  0    1    2     3     4    5     6     7  
  1833.     ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =
  1834.                                             gmtime(time);</PRE>
  1835. <P>All list elements are numeric, and come straight out of the C `struct
  1836. tm'.  $sec, $min, and $hour are the seconds, minutes, and hours of the
  1837. specified time.  $mday is the day of the month, and $mon is the month
  1838. itself, in the range <CODE>0..11</CODE> with 0 indicating January and 11
  1839. indicating December.  $year is the number of years since 1900.  That
  1840. is, $year is <CODE>123</CODE> in year 2023.  $wday is the day of the week, with
  1841. 0 indicating Sunday and 3 indicating Wednesday.  $yday is the day of
  1842. the year, in the range <CODE>1..365</CODE> (or <CODE>1..366</CODE> in leap years.)</P>
  1843. <P>Note that the $year element is <EM>not</EM> simply the last two digits of
  1844. the year.  If you assume it is, then you create non-Y2K-compliant
  1845. programs--and you wouldn't want to do that, would you?</P>
  1846. <P>The proper way to get a complete 4-digit year is simply:</P>
  1847. <PRE>
  1848.         $year += 1900;</PRE>
  1849. <P>And to get the last two digits of the year (e.g., '01' in 2001) do:</P>
  1850. <PRE>
  1851.         $year = sprintf("%02d", $year % 100);</PRE>
  1852. <P>If EXPR is omitted, <A HREF="#item_gmtime"><CODE>gmtime()</CODE></A> uses the current time (<A HREF="#item_gmtime"><CODE>gmtime(time)</CODE></A>).</P>
  1853. <P>In scalar context, <A HREF="#item_gmtime"><CODE>gmtime()</CODE></A> returns the <CODE>ctime(3)</CODE> value:</P>
  1854. <PRE>
  1855.     $now_string = gmtime;  # e.g., "Thu Oct 13 04:54:34 1994"</PRE>
  1856. <P>Also see the <CODE>timegm</CODE> function provided by the <CODE>Time::Local</CODE> module,
  1857. and the <CODE>strftime(3)</CODE> function available via the POSIX module.</P>
  1858. <P>This scalar value is <STRONG>not</STRONG> locale dependent (see <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>), but
  1859. is instead a Perl builtin.  Also see the <CODE>Time::Local</CODE> module, and the
  1860. <CODE>strftime(3)</CODE> and <CODE>mktime(3)</CODE> functions available via the POSIX module.  To
  1861. get somewhat similar but locale dependent date strings, set up your
  1862. locale environment variables appropriately (please see <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>)
  1863. and try for example:</P>
  1864. <PRE>
  1865.     use POSIX qw(strftime);
  1866.     $now_string = strftime "%a %b %e %H:%M:%S %Y", gmtime;</PRE>
  1867. <P>Note that the <CODE>%a</CODE> and <CODE>%b</CODE> escapes, which represent the short forms
  1868. of the day of the week and the month of the year, may not necessarily
  1869. be three characters wide in all locales.</P>
  1870. <P></P>
  1871. <DT><STRONG><A NAME="item_goto">goto LABEL</A></STRONG><BR>
  1872. <DD>
  1873. <DT><STRONG>goto EXPR</STRONG><BR>
  1874. <DD>
  1875. <DT><STRONG>goto &NAME</STRONG><BR>
  1876. <DD>
  1877. The <CODE>goto-LABEL</CODE> form finds the statement labeled with LABEL and resumes
  1878. execution there.  It may not be used to go into any construct that
  1879. requires initialization, such as a subroutine or a <CODE>foreach</CODE> loop.  It
  1880. also can't be used to go into a construct that is optimized away,
  1881. or to get out of a block or subroutine given to <A HREF="#item_sort"><CODE>sort</CODE></A>.
  1882. It can be used to go almost anywhere else within the dynamic scope,
  1883. including out of subroutines, but it's usually better to use some other
  1884. construct such as <A HREF="#item_last"><CODE>last</CODE></A> or <A HREF="#item_die"><CODE>die</CODE></A>.  The author of Perl has never felt the
  1885. need to use this form of <A HREF="#item_goto"><CODE>goto</CODE></A> (in Perl, that is--C is another matter).
  1886. <P>The <CODE>goto-EXPR</CODE> form expects a label name, whose scope will be resolved
  1887. dynamically.  This allows for computed <A HREF="#item_goto"><CODE>goto</CODE></A>s per FORTRAN, but isn't
  1888. necessarily recommended if you're optimizing for maintainability:</P>
  1889. <PRE>
  1890.     goto ("FOO", "BAR", "GLARCH")[$i];</PRE>
  1891. <P>The <CODE>goto-&NAME</CODE> form is quite different from the other forms of <A HREF="#item_goto"><CODE>goto</CODE></A>.
  1892. In fact, it isn't a goto in the normal sense at all, and doesn't have
  1893. the stigma associated with other gotos.  Instead, it
  1894. substitutes a call to the named subroutine for the currently running
  1895. subroutine.  This is used by <CODE>AUTOLOAD</CODE> subroutines that wish to load
  1896. another subroutine and then pretend that the other subroutine had been
  1897. called in the first place (except that any modifications to <CODE>@_</CODE>
  1898. in the current subroutine are propagated to the other subroutine.)
  1899. After the <A HREF="#item_goto"><CODE>goto</CODE></A>, not even <A HREF="#item_caller"><CODE>caller</CODE></A> will be able to tell that this
  1900. routine was called first.</P>
  1901. <P>NAME needn't be the name of a subroutine; it can be a scalar variable
  1902. containing a code reference, or a block which evaluates to a code
  1903. reference.</P>
  1904. <P></P>
  1905. <DT><STRONG><A NAME="item_grep">grep BLOCK LIST</A></STRONG><BR>
  1906. <DD>
  1907. <DT><STRONG>grep EXPR,LIST</STRONG><BR>
  1908. <DD>
  1909. This is similar in spirit to, but not the same as, <A HREF="#item_grep"><CODE>grep(1)</CODE></A> and its
  1910. relatives.  In particular, it is not limited to using regular expressions.
  1911. <P>Evaluates the BLOCK or EXPR for each element of LIST (locally setting
  1912. <CODE>$_</CODE> to each element) and returns the list value consisting of those
  1913. elements for which the expression evaluated to true.  In scalar
  1914. context, returns the number of times the expression was true.</P>
  1915. <PRE>
  1916.     @foo = grep(!/^#/, @bar);    # weed out comments</PRE>
  1917. <P>or equivalently,</P>
  1918. <PRE>
  1919.     @foo = grep {!/^#/} @bar;    # weed out comments</PRE>
  1920. <P>Note that, because <CODE>$_</CODE> is a reference into the list value, it can
  1921. be used to modify the elements of the array.  While this is useful and
  1922. supported, it can cause bizarre results if the LIST is not a named array.
  1923. Similarly, grep returns aliases into the original list, much as a for
  1924. loop's index variable aliases the list elements.  That is, modifying an
  1925. element of a list returned by grep (for example, in a <CODE>foreach</CODE>, <A HREF="#item_map"><CODE>map</CODE></A>
  1926. or another <A HREF="#item_grep"><CODE>grep</CODE></A>) actually modifies the element in the original list.
  1927. This is usually something to be avoided when writing clear code.</P>
  1928. <P>See also <A HREF="#map">map</A> for a list composed of the results of the BLOCK or EXPR.</P>
  1929. <P></P>
  1930. <DT><STRONG><A NAME="item_hex">hex EXPR</A></STRONG><BR>
  1931. <DD>
  1932. <DT><STRONG>hex</STRONG><BR>
  1933. <DD>
  1934. Interprets EXPR as a hex string and returns the corresponding value.
  1935. (To convert strings that might start with either 0, 0x, or 0b, see
  1936. <A HREF="#oct">oct</A>.)  If EXPR is omitted, uses <CODE>$_</CODE>.
  1937. <PRE>
  1938.     print hex '0xAf'; # prints '175'
  1939.     print hex 'aF';   # same</PRE>
  1940. <P>Hex strings may only represent integers.  Strings that would cause
  1941. integer overflow trigger a warning.</P>
  1942. <P></P>
  1943. <DT><STRONG><A NAME="item_import">import</A></STRONG><BR>
  1944. <DD>
  1945. There is no builtin <A HREF="#item_import"><CODE>import</CODE></A> function.  It is just an ordinary
  1946. method (subroutine) defined (or inherited) by modules that wish to export
  1947. names to another module.  The <A HREF="#item_use"><CODE>use</CODE></A> function calls the <A HREF="#item_import"><CODE>import</CODE></A> method
  1948. for the package used.  See also <A HREF="#use()">use()</A>, <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>, and <A HREF="../../lib/Exporter.html">the Exporter manpage</A>.
  1949. <P></P>
  1950. <DT><STRONG><A NAME="item_index">index STR,SUBSTR,POSITION</A></STRONG><BR>
  1951. <DD>
  1952. <DT><STRONG>index STR,SUBSTR</STRONG><BR>
  1953. <DD>
  1954. The index function searches for one string within another, but without
  1955. the wildcard-like behavior of a full regular-expression pattern match.
  1956. It returns the position of the first occurrence of SUBSTR in STR at
  1957. or after POSITION.  If POSITION is omitted, starts searching from the
  1958. beginning of the string.  The return value is based at <CODE>0</CODE> (or whatever
  1959. you've set the <CODE>$[</CODE> variable to--but don't do that).  If the substring
  1960. is not found, returns one less than the base, ordinarily <CODE>-1</CODE>.
  1961. <P></P>
  1962. <DT><STRONG><A NAME="item_int">int EXPR</A></STRONG><BR>
  1963. <DD>
  1964. <DT><STRONG>int</STRONG><BR>
  1965. <DD>
  1966. Returns the integer portion of EXPR.  If EXPR is omitted, uses <CODE>$_</CODE>.
  1967. You should not use this function for rounding: one because it truncates
  1968. towards <CODE>0</CODE>, and two because machine representations of floating point
  1969. numbers can sometimes produce counterintuitive results.  For example,
  1970. <A HREF="#item_int"><CODE>int(-6.725/0.025)</CODE></A> produces -268 rather than the correct -269; that's
  1971. because it's really more like -268.99999999999994315658 instead.  Usually,
  1972. the <A HREF="#item_sprintf"><CODE>sprintf</CODE></A>, <A HREF="#item_printf"><CODE>printf</CODE></A>, or the <CODE>POSIX::floor</CODE> and <CODE>POSIX::ceil</CODE>
  1973. functions will serve you better than will int().
  1974. <P></P>
  1975. <DT><STRONG><A NAME="item_ioctl">ioctl FILEHANDLE,FUNCTION,SCALAR</A></STRONG><BR>
  1976. <DD>
  1977. Implements the <A HREF="#item_ioctl"><CODE>ioctl(2)</CODE></A> function.  You'll probably first have to say
  1978. <PRE>
  1979.     require "ioctl.ph"; # probably in /usr/local/lib/perl/ioctl.ph</PRE>
  1980. <P>to get the correct function definitions.  If <EM>ioctl.ph</EM> doesn't
  1981. exist or doesn't have the correct definitions you'll have to roll your
  1982. own, based on your C header files such as <EM><sys/ioctl.h</EM> >>.
  1983. (There is a Perl script called <STRONG>h2ph</STRONG> that comes with the Perl kit that
  1984. may help you in this, but it's nontrivial.)  SCALAR will be read and/or
  1985. written depending on the FUNCTION--a pointer to the string value of SCALAR
  1986. will be passed as the third argument of the actual <A HREF="#item_ioctl"><CODE>ioctl</CODE></A> call.  (If SCALAR
  1987. has no string value but does have a numeric value, that value will be
  1988. passed rather than a pointer to the string value.  To guarantee this to be
  1989. true, add a <CODE>0</CODE> to the scalar before using it.)  The <A HREF="#item_pack"><CODE>pack</CODE></A> and <A HREF="#item_unpack"><CODE>unpack</CODE></A>
  1990. functions may be needed to manipulate the values of structures used by
  1991. <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>.</P>
  1992. <P>The return value of <A HREF="#item_ioctl"><CODE>ioctl</CODE></A> (and <A HREF="#item_fcntl"><CODE>fcntl</CODE></A>) is as follows:</P>
  1993. <PRE>
  1994.         if OS returns:          then Perl returns:
  1995.             -1                    undefined value
  1996.              0                  string "0 but true"
  1997.         anything else               that number</PRE>
  1998. <P>Thus Perl returns true on success and false on failure, yet you can
  1999. still easily determine the actual value returned by the operating
  2000. system:</P>
  2001. <PRE>
  2002.     $retval = ioctl(...) || -1;
  2003.     printf "System returned %d\n", $retval;</PRE>
  2004. <P>The special string ``<CODE>0</CODE> but true'' is exempt from <STRONG>-w</STRONG> complaints
  2005. about improper numeric conversions.</P>
  2006. <P>Here's an example of setting a filehandle named <CODE>REMOTE</CODE> to be
  2007. non-blocking at the system level.  You'll have to negotiate <CODE>$|</CODE>
  2008. on your own, though.</P>
  2009. <PRE>
  2010.     use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);</PRE>
  2011. <PRE>
  2012.     $flags = fcntl(REMOTE, F_GETFL, 0)
  2013.                 or die "Can't get flags for the socket: $!\n";</PRE>
  2014. <PRE>
  2015.     $flags = fcntl(REMOTE, F_SETFL, $flags | O_NONBLOCK)
  2016.                 or die "Can't set flags for the socket: $!\n";</PRE>
  2017. <P></P>
  2018. <DT><STRONG><A NAME="item_join">join EXPR,LIST</A></STRONG><BR>
  2019. <DD>
  2020. Joins the separate strings of LIST into a single string with fields
  2021. separated by the value of EXPR, and returns that new string.  Example:
  2022. <PRE>
  2023.     $rec = join(':', $login,$passwd,$uid,$gid,$gcos,$home,$shell);</PRE>
  2024. <P>Beware that unlike <A HREF="#item_split"><CODE>split</CODE></A>, <A HREF="#item_join"><CODE>join</CODE></A> doesn't take a pattern as its
  2025. first argument.  Compare <A HREF="#split">split</A>.</P>
  2026. <P></P>
  2027. <DT><STRONG><A NAME="item_keys">keys HASH</A></STRONG><BR>
  2028. <DD>
  2029. Returns a list consisting of all the keys of the named hash.  (In
  2030. scalar context, returns the number of keys.)  The keys are returned in
  2031. an apparently random order.  The actual random order is subject to
  2032. change in future versions of perl, but it is guaranteed to be the same
  2033. order as either the <A HREF="#item_values"><CODE>values</CODE></A> or <A HREF="#item_each"><CODE>each</CODE></A> function produces (given
  2034. that the hash has not been modified).  As a side effect, it resets
  2035. HASH's iterator.
  2036. <P>Here is yet another way to print your environment:</P>
  2037. <PRE>
  2038.     @keys = keys %ENV;
  2039.     @values = values %ENV;
  2040.     while (@keys) { 
  2041.         print pop(@keys), '=', pop(@values), "\n";
  2042.     }</PRE>
  2043. <P>or how about sorted by key:</P>
  2044. <PRE>
  2045.     foreach $key (sort(keys %ENV)) {
  2046.         print $key, '=', $ENV{$key}, "\n";
  2047.     }</PRE>
  2048. <P>To sort a hash by value, you'll need to use a <A HREF="#item_sort"><CODE>sort</CODE></A> function.
  2049. Here's a descending numeric sort of a hash by its values:</P>
  2050. <PRE>
  2051.     foreach $key (sort { $hash{$b} <=> $hash{$a} } keys %hash) {
  2052.         printf "%4d %s\n", $hash{$key}, $key;
  2053.     }</PRE>
  2054. <P>As an lvalue <A HREF="#item_keys"><CODE>keys</CODE></A> allows you to increase the number of hash buckets
  2055. allocated for the given hash.  This can gain you a measure of efficiency if
  2056. you know the hash is going to get big.  (This is similar to pre-extending
  2057. an array by assigning a larger number to $#array.)  If you say</P>
  2058. <PRE>
  2059.     keys %hash = 200;</PRE>
  2060. <P>then <CODE>%hash</CODE> will have at least 200 buckets allocated for it--256 of them,
  2061. in fact, since it rounds up to the next power of two.  These
  2062. buckets will be retained even if you do <CODE>%hash = ()</CODE>, use <CODE>undef
  2063. %hash</CODE> if you want to free the storage while <CODE>%hash</CODE> is still in scope.
  2064. You can't shrink the number of buckets allocated for the hash using
  2065. <A HREF="#item_keys"><CODE>keys</CODE></A> in this way (but you needn't worry about doing this by accident,
  2066. as trying has no effect).</P>
  2067. <P>See also <A HREF="#item_each"><CODE>each</CODE></A>, <A HREF="#item_values"><CODE>values</CODE></A> and <A HREF="#item_sort"><CODE>sort</CODE></A>.</P>
  2068. <P></P>
  2069. <DT><STRONG><A NAME="item_kill">kill SIGNAL, LIST</A></STRONG><BR>
  2070. <DD>
  2071. Sends a signal to a list of processes.  Returns the number of
  2072. processes successfully signaled (which is not necessarily the
  2073. same as the number actually killed).
  2074. <PRE>
  2075.     $cnt = kill 1, $child1, $child2;
  2076.     kill 9, @goners;</PRE>
  2077. <P>If SIGNAL is zero, no signal is sent to the process.  This is a
  2078. useful way to check that the process is alive and hasn't changed
  2079. its UID.  See <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for notes on the portability of this
  2080. construct.</P>
  2081. <P>Unlike in the shell, if SIGNAL is negative, it kills
  2082. process groups instead of processes.  (On System V, a negative <EM>PROCESS</EM>
  2083. number will also kill process groups, but that's not portable.)  That
  2084. means you usually want to use positive not negative signals.  You may also
  2085. use a signal name in quotes.  See <A HREF="../../lib/Pod/perlipc.html#signals">Signals in the perlipc manpage</A> for details.</P>
  2086. <P></P>
  2087. <DT><STRONG><A NAME="item_last">last LABEL</A></STRONG><BR>
  2088. <DD>
  2089. <DT><STRONG>last</STRONG><BR>
  2090. <DD>
  2091. The <A HREF="#item_last"><CODE>last</CODE></A> command is like the <CODE>break</CODE> statement in C (as used in
  2092. loops); it immediately exits the loop in question.  If the LABEL is
  2093. omitted, the command refers to the innermost enclosing loop.  The
  2094. <A HREF="#item_continue"><CODE>continue</CODE></A> block, if any, is not executed:
  2095. <PRE>
  2096.     LINE: while (<STDIN>) {
  2097.         last LINE if /^$/;      # exit when done with header
  2098.         #...
  2099.     }</PRE>
  2100. <P><A HREF="#item_last"><CODE>last</CODE></A> cannot be used to exit a block which returns a value such as
  2101. <A HREF="#item_eval"><CODE>eval {}</CODE></A>, <A HREF="#item_sub"><CODE>sub {}</CODE></A> or <A HREF="#item_do"><CODE>do {}</CODE></A>, and should not be used to exit
  2102. a <A HREF="#item_grep"><CODE>grep()</CODE></A> or <A HREF="#item_map"><CODE>map()</CODE></A> operation.</P>
  2103. <P>Note that a block by itself is semantically identical to a loop
  2104. that executes once.  Thus <A HREF="#item_last"><CODE>last</CODE></A> can be used to effect an early
  2105. exit out of such a block.</P>
  2106. <P>See also <A HREF="#continue">continue</A> for an illustration of how <A HREF="#item_last"><CODE>last</CODE></A>, <A HREF="#item_next"><CODE>next</CODE></A>, and
  2107. <A HREF="#item_redo"><CODE>redo</CODE></A> work.</P>
  2108. <P></P>
  2109. <DT><STRONG><A NAME="item_lc">lc EXPR</A></STRONG><BR>
  2110. <DD>
  2111. <DT><STRONG>lc</STRONG><BR>
  2112. <DD>
  2113. Returns an lowercased version of EXPR.  This is the internal function
  2114. implementing the <CODE>\L</CODE> escape in double-quoted strings.
  2115. Respects current LC_CTYPE locale if <CODE>use locale</CODE> in force.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>
  2116. and <A HREF="../../lib/utf8.html">the utf8 manpage</A>.
  2117. <P>If EXPR is omitted, uses <CODE>$_</CODE>.</P>
  2118. <P></P>
  2119. <DT><STRONG><A NAME="item_lcfirst">lcfirst EXPR</A></STRONG><BR>
  2120. <DD>
  2121. <DT><STRONG>lcfirst</STRONG><BR>
  2122. <DD>
  2123. Returns the value of EXPR with the first character lowercased.  This is
  2124. the internal function implementing the <CODE>\l</CODE> escape in double-quoted strings.
  2125. Respects current LC_CTYPE locale if <CODE>use locale</CODE> in force.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.
  2126. <P>If EXPR is omitted, uses <CODE>$_</CODE>.</P>
  2127. <P></P>
  2128. <DT><STRONG><A NAME="item_length">length EXPR</A></STRONG><BR>
  2129. <DD>
  2130. <DT><STRONG>length</STRONG><BR>
  2131. <DD>
  2132. Returns the length in characters of the value of EXPR.  If EXPR is
  2133. omitted, returns length of <CODE>$_</CODE>.  Note that this cannot be used on 
  2134. an entire array or hash to find out how many elements these have.
  2135. For that, use <CODE>scalar @array</CODE> and <CODE>scalar keys %hash</CODE> respectively.
  2136. <P></P>
  2137. <DT><STRONG><A NAME="item_link">link OLDFILE,NEWFILE</A></STRONG><BR>
  2138. <DD>
  2139. Creates a new filename linked to the old filename.  Returns true for
  2140. success, false otherwise.
  2141. <P></P>
  2142. <DT><STRONG><A NAME="item_listen">listen SOCKET,QUEUESIZE</A></STRONG><BR>
  2143. <DD>
  2144. Does the same thing that the listen system call does.  Returns true if
  2145. it succeeded, false otherwise.  See the example in <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A>.
  2146. <P></P>
  2147. <DT><STRONG><A NAME="item_local">local EXPR</A></STRONG><BR>
  2148. <DD>
  2149. You really probably want to be using <A HREF="#item_my"><CODE>my</CODE></A> instead, because <A HREF="#item_local"><CODE>local</CODE></A> isn't
  2150. what most people think of as ``local''.  See <A HREF="../../lib/Pod/perlsub.html#private variables via my()">Private Variables via my() in the perlsub manpage</A> for details.
  2151. <P>A local modifies the listed variables to be local to the enclosing
  2152. block, file, or eval.  If more than one value is listed, the list must
  2153. be placed in parentheses.  See <A HREF="../../lib/Pod/perlsub.html#temporary values via local()">Temporary Values via local() in the perlsub manpage</A>
  2154. for details, including issues with tied arrays and hashes.</P>
  2155. <P></P>
  2156. <DT><STRONG><A NAME="item_localtime">localtime EXPR</A></STRONG><BR>
  2157. <DD>
  2158. Converts a time as returned by the time function to a 9-element list
  2159. with the time analyzed for the local time zone.  Typically used as
  2160. follows:
  2161. <PRE>
  2162.     #  0    1    2     3     4    5     6     7     8
  2163.     ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
  2164.                                                 localtime(time);</PRE>
  2165. <P>All list elements are numeric, and come straight out of the C `struct
  2166. tm'.  $sec, $min, and $hour are the seconds, minutes, and hours of the
  2167. specified time.  $mday is the day of the month, and $mon is the month
  2168. itself, in the range <CODE>0..11</CODE> with 0 indicating January and 11
  2169. indicating December.  $year is the number of years since 1900.  That
  2170. is, $year is <CODE>123</CODE> in year 2023.  $wday is the day of the week, with
  2171. 0 indicating Sunday and 3 indicating Wednesday.  $yday is the day of
  2172. the year, in the range <CODE>1..365</CODE> (or <CODE>1..366</CODE> in leap years.)  $isdst
  2173. is true if the specified time occurs during daylight savings time,
  2174. false otherwise.</P>
  2175. <P>Note that the $year element is <EM>not</EM> simply the last two digits of
  2176. the year.  If you assume it is, then you create non-Y2K-compliant
  2177. programs--and you wouldn't want to do that, would you?</P>
  2178. <P>The proper way to get a complete 4-digit year is simply:</P>
  2179. <PRE>
  2180.         $year += 1900;</PRE>
  2181. <P>And to get the last two digits of the year (e.g., '01' in 2001) do:</P>
  2182. <PRE>
  2183.         $year = sprintf("%02d", $year % 100);</PRE>
  2184. <P>If EXPR is omitted, <A HREF="#item_localtime"><CODE>localtime()</CODE></A> uses the current time (<A HREF="#item_localtime"><CODE>localtime(time)</CODE></A>).</P>
  2185. <P>In scalar context, <A HREF="#item_localtime"><CODE>localtime()</CODE></A> returns the <CODE>ctime(3)</CODE> value:</P>
  2186. <PRE>
  2187.     $now_string = localtime;  # e.g., "Thu Oct 13 04:54:34 1994"</PRE>
  2188. <P>This scalar value is <STRONG>not</STRONG> locale dependent, see <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>, but
  2189. instead a Perl builtin.  Also see the <CODE>Time::Local</CODE> module
  2190. (to convert the second, minutes, hours, ... back to seconds since the
  2191. stroke of midnight the 1st of January 1970, the value returned by
  2192. time()), and the <CODE>strftime(3)</CODE> and <CODE>mktime(3)</CODE> functions available via the
  2193. POSIX module.  To get somewhat similar but locale dependent date
  2194. strings, set up your locale environment variables appropriately
  2195. (please see <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>) and try for example:</P>
  2196. <PRE>
  2197.     use POSIX qw(strftime);
  2198.     $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime;</PRE>
  2199. <P>Note that the <CODE>%a</CODE> and <CODE>%b</CODE>, the short forms of the day of the week
  2200. and the month of the year, may not necessarily be three characters wide.</P>
  2201. <P></P>
  2202. <DT><STRONG><A NAME="item_lock">lock</A></STRONG><BR>
  2203. <DD>
  2204. <PRE>
  2205.     lock I<THING></PRE>
  2206. <P>This function places an advisory lock on a variable, subroutine,
  2207. or referenced object contained in <EM>THING</EM> until the lock goes out
  2208. of scope.  This is a built-in function only if your version of Perl
  2209. was built with threading enabled, and if you've said <CODE>use Threads</CODE>.
  2210. Otherwise a user-defined function by this name will be called.  See
  2211. <A HREF="../../lib/Thread.html">the Thread manpage</A>.</P>
  2212. <DT><STRONG><A NAME="item_log">log EXPR</A></STRONG><BR>
  2213. <DD>
  2214. <DT><STRONG>log</STRONG><BR>
  2215. <DD>
  2216. Returns the natural logarithm (base <EM>e</EM>) of EXPR.  If EXPR is omitted,
  2217. returns log of <CODE>$_</CODE>.  To get the log of another base, use basic algebra:
  2218. The base-N log of a number is equal to the natural log of that number
  2219. divided by the natural log of N.  For example:
  2220. <PRE>
  2221.     sub log10 {
  2222.         my $n = shift;
  2223.         return log($n)/log(10);
  2224.     }</PRE>
  2225. <P>See also <A HREF="#exp">exp</A> for the inverse operation.</P>
  2226. <P></P>
  2227. <DT><STRONG><A NAME="item_lstat">lstat FILEHANDLE</A></STRONG><BR>
  2228. <DD>
  2229. <DT><STRONG>lstat EXPR</STRONG><BR>
  2230. <DD>
  2231. <DT><STRONG>lstat</STRONG><BR>
  2232. <DD>
  2233. Does the same thing as the <A HREF="#item_stat"><CODE>stat</CODE></A> function (including setting the
  2234. special <CODE>_</CODE> filehandle) but stats a symbolic link instead of the file
  2235. the symbolic link points to.  If symbolic links are unimplemented on
  2236. your system, a normal <A HREF="#item_stat"><CODE>stat</CODE></A> is done.
  2237. <P>If EXPR is omitted, stats <CODE>$_</CODE>.</P>
  2238. <P></P>
  2239. <DT><STRONG><A NAME="item_m/">m//</A></STRONG><BR>
  2240. <DD>
  2241. The match operator.  See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  2242. <P></P>
  2243. <DT><STRONG><A NAME="item_map">map BLOCK LIST</A></STRONG><BR>
  2244. <DD>
  2245. <DT><STRONG>map EXPR,LIST</STRONG><BR>
  2246. <DD>
  2247. Evaluates the BLOCK or EXPR for each element of LIST (locally setting
  2248. <CODE>$_</CODE> to each element) and returns the list value composed of the
  2249. results of each such evaluation.  In scalar context, returns the
  2250. total number of elements so generated.  Evaluates BLOCK or EXPR in
  2251. list context, so each element of LIST may produce zero, one, or
  2252. more elements in the returned value.
  2253. <PRE>
  2254.     @chars = map(chr, @nums);</PRE>
  2255. <P>translates a list of numbers to the corresponding characters.  And</P>
  2256. <PRE>
  2257.     %hash = map { getkey($_) => $_ } @array;</PRE>
  2258. <P>is just a funny way to write</P>
  2259. <PRE>
  2260.     %hash = ();
  2261.     foreach $_ (@array) {
  2262.         $hash{getkey($_)} = $_;
  2263.     }</PRE>
  2264. <P>Note that, because <CODE>$_</CODE> is a reference into the list value, it can
  2265. be used to modify the elements of the array.  While this is useful and
  2266. supported, it can cause bizarre results if the LIST is not a named array.
  2267. Using a regular <CODE>foreach</CODE> loop for this purpose would be clearer in
  2268. most cases.  See also <A HREF="#grep">grep</A> for an array composed of those items of
  2269. the original list for which the BLOCK or EXPR evaluates to true.</P>
  2270. <P></P>
  2271. <DT><STRONG><A NAME="item_mkdir">mkdir FILENAME,MASK</A></STRONG><BR>
  2272. <DD>
  2273. <DT><STRONG>mkdir FILENAME</STRONG><BR>
  2274. <DD>
  2275. Creates the directory specified by FILENAME, with permissions
  2276. specified by MASK (as modified by <A HREF="#item_umask"><CODE>umask</CODE></A>).  If it succeeds it
  2277. returns true, otherwise it returns false and sets <CODE>$!</CODE> (errno).
  2278. If omitted, MASK defaults to 0777.
  2279. <P>In general, it is better to create directories with permissive MASK,
  2280. and let the user modify that with their <A HREF="#item_umask"><CODE>umask</CODE></A>, than it is to supply
  2281. a restrictive MASK and give the user no way to be more permissive.
  2282. The exceptions to this rule are when the file or directory should be
  2283. kept private (mail files, for instance).  The <CODE>perlfunc(1)</CODE> entry on
  2284. <A HREF="#item_umask"><CODE>umask</CODE></A> discusses the choice of MASK in more detail.</P>
  2285. <P></P>
  2286. <DT><STRONG><A NAME="item_msgctl">msgctl ID,CMD,ARG</A></STRONG><BR>
  2287. <DD>
  2288. Calls the System V IPC function msgctl(2).  You'll probably have to say
  2289. <PRE>
  2290.     use IPC::SysV;</PRE>
  2291. <P>first to get the correct constant definitions.  If CMD is <CODE>IPC_STAT</CODE>,
  2292. then ARG must be a variable which will hold the returned <CODE>msqid_ds</CODE>
  2293. structure.  Returns like <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>: the undefined value for error,
  2294. <CODE>"0 but true"</CODE> for zero, or the actual return value otherwise.  See also
  2295. <CODE>IPC::SysV</CODE> and <CODE>IPC::Semaphore</CODE> documentation.</P>
  2296. <P></P>
  2297. <DT><STRONG><A NAME="item_msgget">msgget KEY,FLAGS</A></STRONG><BR>
  2298. <DD>
  2299. Calls the System V IPC function msgget(2).  Returns the message queue
  2300. id, or the undefined value if there is an error.  See also <CODE>IPC::SysV</CODE>
  2301. and <CODE>IPC::Msg</CODE> documentation.
  2302. <P></P>
  2303. <DT><STRONG><A NAME="item_msgrcv">msgrcv ID,VAR,SIZE,TYPE,FLAGS</A></STRONG><BR>
  2304. <DD>
  2305. Calls the System V IPC function msgrcv to receive a message from
  2306. message queue ID into variable VAR with a maximum message size of
  2307. SIZE.  Note that when a message is received, the message type as a
  2308. native long integer will be the first thing in VAR, followed by the
  2309. actual message.  This packing may be opened with <A HREF="#item_unpack"><CODE>unpack("l! a*")</CODE></A>.
  2310. Taints the variable.  Returns true if successful, or false if there is
  2311. an error.  See also <CODE>IPC::SysV</CODE> and <CODE>IPC::SysV::Msg</CODE> documentation.
  2312. <P></P>
  2313. <DT><STRONG><A NAME="item_msgsnd">msgsnd ID,MSG,FLAGS</A></STRONG><BR>
  2314. <DD>
  2315. Calls the System V IPC function msgsnd to send the message MSG to the
  2316. message queue ID.  MSG must begin with the native long integer message
  2317. type, and be followed by the length of the actual message, and finally
  2318. the message itself.  This kind of packing can be achieved with
  2319. <A HREF="#item_pack"><CODE>pack("l! a*", $type, $message)</CODE></A>.  Returns true if successful,
  2320. or false if there is an error.  See also <CODE>IPC::SysV</CODE>
  2321. and <CODE>IPC::SysV::Msg</CODE> documentation.
  2322. <P></P>
  2323. <DT><STRONG><A NAME="item_my">my EXPR</A></STRONG><BR>
  2324. <DD>
  2325. <DT><STRONG><A NAME="item_my_EXPR_%3A_ATTRIBUTES">my EXPR : ATTRIBUTES</A></STRONG><BR>
  2326. <DD>
  2327. A <A HREF="#item_my"><CODE>my</CODE></A> declares the listed variables to be local (lexically) to the
  2328. enclosing block, file, or <A HREF="#item_eval"><CODE>eval</CODE></A>.  If
  2329. more than one value is listed, the list must be placed in parentheses.  See
  2330. <A HREF="../../lib/Pod/perlsub.html#private variables via my()">Private Variables via my() in the perlsub manpage</A> for details.
  2331. <P></P>
  2332. <DT><STRONG><A NAME="item_next">next LABEL</A></STRONG><BR>
  2333. <DD>
  2334. <DT><STRONG>next</STRONG><BR>
  2335. <DD>
  2336. The <A HREF="#item_next"><CODE>next</CODE></A> command is like the <A HREF="#item_continue"><CODE>continue</CODE></A> statement in C; it starts
  2337. the next iteration of the loop:
  2338. <PRE>
  2339.     LINE: while (<STDIN>) {
  2340.         next LINE if /^#/;      # discard comments
  2341.         #...
  2342.     }</PRE>
  2343. <P>Note that if there were a <A HREF="#item_continue"><CODE>continue</CODE></A> block on the above, it would get
  2344. executed even on discarded lines.  If the LABEL is omitted, the command
  2345. refers to the innermost enclosing loop.</P>
  2346. <P><A HREF="#item_next"><CODE>next</CODE></A> cannot be used to exit a block which returns a value such as
  2347. <A HREF="#item_eval"><CODE>eval {}</CODE></A>, <A HREF="#item_sub"><CODE>sub {}</CODE></A> or <A HREF="#item_do"><CODE>do {}</CODE></A>, and should not be used to exit
  2348. a <A HREF="#item_grep"><CODE>grep()</CODE></A> or <A HREF="#item_map"><CODE>map()</CODE></A> operation.</P>
  2349. <P>Note that a block by itself is semantically identical to a loop
  2350. that executes once.  Thus <A HREF="#item_next"><CODE>next</CODE></A> will exit such a block early.</P>
  2351. <P>See also <A HREF="#continue">continue</A> for an illustration of how <A HREF="#item_last"><CODE>last</CODE></A>, <A HREF="#item_next"><CODE>next</CODE></A>, and
  2352. <A HREF="#item_redo"><CODE>redo</CODE></A> work.</P>
  2353. <P></P>
  2354. <DT><STRONG><A NAME="item_no">no Module LIST</A></STRONG><BR>
  2355. <DD>
  2356. See the <A HREF="#use">use</A> function, which <A HREF="#item_no"><CODE>no</CODE></A> is the opposite of.
  2357. <P></P>
  2358. <DT><STRONG><A NAME="item_oct">oct EXPR</A></STRONG><BR>
  2359. <DD>
  2360. <DT><STRONG>oct</STRONG><BR>
  2361. <DD>
  2362. Interprets EXPR as an octal string and returns the corresponding
  2363. value.  (If EXPR happens to start off with <CODE>0x</CODE>, interprets it as a
  2364. hex string.  If EXPR starts off with <CODE>0b</CODE>, it is interpreted as a
  2365. binary string.)  The following will handle decimal, binary, octal, and
  2366. hex in the standard Perl or C notation:
  2367. <PRE>
  2368.     $val = oct($val) if $val =~ /^0/;</PRE>
  2369. <P>If EXPR is omitted, uses <CODE>$_</CODE>.   To go the other way (produce a number
  2370. in octal), use <A HREF="#item_sprintf"><CODE>sprintf()</CODE></A> or printf():</P>
  2371. <PRE>
  2372.     $perms = (stat("filename"))[2] & 07777;
  2373.     $oct_perms = sprintf "%lo", $perms;</PRE>
  2374. <P>The <A HREF="#item_oct"><CODE>oct()</CODE></A> function is commonly used when a string such as <CODE>644</CODE> needs
  2375. to be converted into a file mode, for example. (Although perl will
  2376. automatically convert strings into numbers as needed, this automatic
  2377. conversion assumes base 10.)</P>
  2378. <P></P>
  2379. <DT><STRONG><A NAME="item_open">open FILEHANDLE,MODE,LIST</A></STRONG><BR>
  2380. <DD>
  2381. <DT><STRONG>open FILEHANDLE,EXPR</STRONG><BR>
  2382. <DD>
  2383. <DT><STRONG>open FILEHANDLE</STRONG><BR>
  2384. <DD>
  2385. Opens the file whose filename is given by EXPR, and associates it with
  2386. FILEHANDLE.  If FILEHANDLE is an expression, its value is used as the
  2387. name of the real filehandle wanted.  (This is considered a symbolic
  2388. reference, so <CODE>use strict 'refs'</CODE> should <EM>not</EM> be in effect.)
  2389. <P>If EXPR is omitted, the scalar
  2390. variable of the same name as the FILEHANDLE contains the filename.
  2391. (Note that lexical variables--those declared with <A HREF="#item_my"><CODE>my</CODE></A>--will not work
  2392. for this purpose; so if you're using <A HREF="#item_my"><CODE>my</CODE></A>, specify EXPR in your call
  2393. to open.)  See <A HREF="../../lib/Pod/perlopentut.html">the perlopentut manpage</A> for a kinder, gentler explanation of opening
  2394. files.</P>
  2395. <P>If MODE is <CODE>'<'</CODE> or nothing, the file is opened for input.
  2396. If MODE is <CODE>'>'</CODE>, the file is truncated and opened for
  2397. output, being created if necessary.  If MODE is <CODE>'>>'</CODE>,
  2398. the file is opened for appending, again being created if necessary. 
  2399. You can put a <CODE>'+'</CODE> in front of the <CODE>'>'</CODE> or <CODE>'<'</CODE> to indicate that
  2400. you want both read and write access to the file; thus <CODE>'+<'</CODE> is almost
  2401. always preferred for read/write updates--the <CODE>'+>'</CODE> mode would clobber the
  2402. file first.  You can't usually use either read-write mode for updating
  2403. textfiles, since they have variable length records.  See the <STRONG>-i</STRONG>
  2404. switch in <A HREF="../../lib/Pod/perlrun.html">the perlrun manpage</A> for a better approach.  The file is created with
  2405. permissions of <CODE>0666</CODE> modified by the process' <A HREF="#item_umask"><CODE>umask</CODE></A> value.</P>
  2406. <P>These various prefixes correspond to the <CODE>fopen(3)</CODE> modes of <CODE>'r'</CODE>, <CODE>'r+'</CODE>,
  2407. <CODE>'w'</CODE>, <CODE>'w+'</CODE>, <CODE>'a'</CODE>, and <CODE>'a+'</CODE>.</P>
  2408. <P>In the 2-arguments (and 1-argument) form of the call the mode and
  2409. filename should be concatenated (in this order), possibly separated by
  2410. spaces.  It is possible to omit the mode if the mode is <CODE>'<'</CODE>.</P>
  2411. <P>If the filename begins with <CODE>'|'</CODE>, the filename is interpreted as a
  2412. command to which output is to be piped, and if the filename ends with a
  2413. <CODE>'|'</CODE>, the filename is interpreted as a command which pipes output to
  2414. us.  See <A HREF="../../lib/Pod/perlipc.html#using open() for ipc">Using open() for IPC in the perlipc manpage</A>
  2415. for more examples of this.  (You are not allowed to <A HREF="#item_open"><CODE>open</CODE></A> to a command
  2416. that pipes both in <EM>and</EM> out, but see <A HREF="../../lib/IPC/Open2.html">the IPC::Open2 manpage</A>, <A HREF="../../lib/IPC/Open3.html">the IPC::Open3 manpage</A>,
  2417. and <A HREF="../../lib/Pod/perlipc.html#bidirectional communication with another process">Bidirectional Communication with Another Process in the perlipc manpage</A>
  2418. for alternatives.)</P>
  2419. <P>If MODE is <CODE>'|-'</CODE>, the filename is interpreted as a
  2420. command to which output is to be piped, and if MODE is
  2421. <CODE>'-|'</CODE>, the filename is interpreted as a command which pipes output to
  2422. us.  In the 2-arguments (and 1-argument) form one should replace dash
  2423. (<CODE>'-'</CODE>) with the command.  See <A HREF="../../lib/Pod/perlipc.html#using open() for ipc">Using open() for IPC in the perlipc manpage</A>
  2424. for more examples of this.  (You are not allowed to <A HREF="#item_open"><CODE>open</CODE></A> to a command
  2425. that pipes both in <EM>and</EM> out, but see <A HREF="../../lib/IPC/Open2.html">the IPC::Open2 manpage</A>, <A HREF="../../lib/IPC/Open3.html">the IPC::Open3 manpage</A>,
  2426. and <A HREF="../../lib/Pod/perlipc.html#bidirectional communication">Bidirectional Communication in the perlipc manpage</A> for alternatives.)</P>
  2427. <P>In the 2-arguments (and 1-argument) form opening <CODE>'-'</CODE> opens STDIN
  2428. and opening <CODE>'>-'</CODE> opens STDOUT.</P>
  2429. <P>Open returns
  2430. nonzero upon success, the undefined value otherwise.  If the <A HREF="#item_open"><CODE>open</CODE></A>
  2431. involved a pipe, the return value happens to be the pid of the
  2432. subprocess.</P>
  2433. <P>If you're unfortunate enough to be running Perl on a system that
  2434. distinguishes between text files and binary files (modern operating
  2435. systems don't care), then you should check out <A HREF="#binmode">binmode</A> for tips for
  2436. dealing with this.  The key distinction between systems that need <A HREF="#item_binmode"><CODE>binmode</CODE></A>
  2437. and those that don't is their text file formats.  Systems like Unix, MacOS, and
  2438. Plan9, which delimit lines with a single character, and which encode that
  2439. character in C as <CODE>"\n"</CODE>, do not need <A HREF="#item_binmode"><CODE>binmode</CODE></A>.  The rest need it.</P>
  2440. <P>When opening a file, it's usually a bad idea to continue normal execution
  2441. if the request failed, so <A HREF="#item_open"><CODE>open</CODE></A> is frequently used in connection with
  2442. <A HREF="#item_die"><CODE>die</CODE></A>.  Even if <A HREF="#item_die"><CODE>die</CODE></A> won't do what you want (say, in a CGI script,
  2443. where you want to make a nicely formatted error message (but there are
  2444. modules that can help with that problem)) you should always check
  2445. the return value from opening a file.  The infrequent exception is when
  2446. working with an unopened filehandle is actually what you want to do.</P>
  2447. <P>Examples:</P>
  2448. <PRE>
  2449.     $ARTICLE = 100;
  2450.     open ARTICLE or die "Can't find article $ARTICLE: $!\n";
  2451.     while (<ARTICLE>) {...</PRE>
  2452. <PRE>
  2453.     open(LOG, '>>/usr/spool/news/twitlog');     # (log is reserved)
  2454.     # if the open fails, output is discarded</PRE>
  2455. <PRE>
  2456.     open(DBASE, '+<', 'dbase.mine')             # open for update
  2457.         or die "Can't open 'dbase.mine' for update: $!";</PRE>
  2458. <PRE>
  2459.     open(DBASE, '+<dbase.mine')                 # ditto
  2460.         or die "Can't open 'dbase.mine' for update: $!";</PRE>
  2461. <PRE>
  2462.     open(ARTICLE, '-|', "caesar <$article")     # decrypt article
  2463.         or die "Can't start caesar: $!";</PRE>
  2464. <PRE>
  2465.     open(ARTICLE, "caesar <$article |")         # ditto
  2466.         or die "Can't start caesar: $!";</PRE>
  2467. <PRE>
  2468.     open(EXTRACT, "|sort >/tmp/Tmp$$")          # $$ is our process id
  2469.         or die "Can't start sort: $!";</PRE>
  2470. <PRE>
  2471.     # process argument list of files along with any includes</PRE>
  2472. <PRE>
  2473.     foreach $file (@ARGV) {
  2474.         process($file, 'fh00');
  2475.     }</PRE>
  2476. <PRE>
  2477.     sub process {
  2478.         my($filename, $input) = @_;
  2479.         $input++;               # this is a string increment
  2480.         unless (open($input, $filename)) {
  2481.             print STDERR "Can't open $filename: $!\n";
  2482.             return;
  2483.         }</PRE>
  2484. <PRE>
  2485.         local $_;
  2486.         while (<$input>) {              # note use of indirection
  2487.             if (/^#include "(.*)"/) {
  2488.                 process($1, $input);
  2489.                 next;
  2490.             }
  2491.             #...                # whatever
  2492.         }
  2493.     }</PRE>
  2494. <P>You may also, in the Bourne shell tradition, specify an EXPR beginning
  2495. with <CODE>'>&'</CODE>, in which case the rest of the string is interpreted as the
  2496. name of a filehandle (or file descriptor, if numeric) to be
  2497. duped and opened.  You may use <CODE>&</CODE> after <CODE>></CODE>, <CODE>>></CODE>,
  2498. <CODE><</CODE>, <CODE>+></CODE>, <CODE>+>></CODE>, and <CODE>+<</CODE>.  The
  2499. mode you specify should match the mode of the original filehandle.
  2500. (Duping a filehandle does not take into account any existing contents of
  2501. stdio buffers.)  Duping file handles is not yet supported for 3-argument
  2502. open().</P>
  2503. <P>Here is a script that saves, redirects, and restores STDOUT and
  2504. STDERR:</P>
  2505. <PRE>
  2506.     #!/usr/bin/perl
  2507.     open(OLDOUT, ">&STDOUT");
  2508.     open(OLDERR, ">&STDERR");</PRE>
  2509. <PRE>
  2510.     open(STDOUT, '>', "foo.out") || die "Can't redirect stdout";
  2511.     open(STDERR, ">&STDOUT")     || die "Can't dup stdout";</PRE>
  2512. <PRE>
  2513.     select(STDERR); $| = 1;     # make unbuffered
  2514.     select(STDOUT); $| = 1;     # make unbuffered</PRE>
  2515. <PRE>
  2516.     print STDOUT "stdout 1\n";  # this works for
  2517.     print STDERR "stderr 1\n";  # subprocesses too</PRE>
  2518. <PRE>
  2519.     close(STDOUT);
  2520.     close(STDERR);</PRE>
  2521. <PRE>
  2522.     open(STDOUT, ">&OLDOUT");
  2523.     open(STDERR, ">&OLDERR");</PRE>
  2524. <PRE>
  2525.     print STDOUT "stdout 2\n";
  2526.     print STDERR "stderr 2\n";</PRE>
  2527. <P>If you specify <CODE>'<&=N'</CODE>, where <CODE>N</CODE> is a number, then Perl will do an
  2528. equivalent of C's <CODE>fdopen</CODE> of that file descriptor; this is more
  2529. parsimonious of file descriptors.  For example:</P>
  2530. <PRE>
  2531.     open(FILEHANDLE, "<&=$fd")</PRE>
  2532. <P>Note that this feature depends on the <CODE>fdopen()</CODE> C library function.
  2533. On many UNIX systems, <CODE>fdopen()</CODE> is known to fail when file descriptors
  2534. exceed a certain value, typically 255. If you need more file
  2535. descriptors than that, consider rebuilding Perl to use the <CODE>sfio</CODE>
  2536. library.</P>
  2537. <P>If you open a pipe on the command <CODE>'-'</CODE>, i.e., either <CODE>'|-'</CODE> or <CODE>'-|'</CODE>
  2538. with 2-arguments (or 1-argument) form of open(), then
  2539. there is an implicit fork done, and the return value of open is the pid
  2540. of the child within the parent process, and <CODE>0</CODE> within the child
  2541. process.  (Use <A HREF="#item_defined"><CODE>defined($pid)</CODE></A> to determine whether the open was successful.)
  2542. The filehandle behaves normally for the parent, but i/o to that
  2543. filehandle is piped from/to the STDOUT/STDIN of the child process.
  2544. In the child process the filehandle isn't opened--i/o happens from/to
  2545. the new STDOUT or STDIN.  Typically this is used like the normal
  2546. piped open when you want to exercise more control over just how the
  2547. pipe command gets executed, such as when you are running setuid, and
  2548. don't want to have to scan shell commands for metacharacters.
  2549. The following triples are more or less equivalent:</P>
  2550. <PRE>
  2551.     open(FOO, "|tr '[a-z]' '[A-Z]'");
  2552.     open(FOO, '|-', "tr '[a-z]' '[A-Z]'");
  2553.     open(FOO, '|-') || exec 'tr', '[a-z]', '[A-Z]';</PRE>
  2554. <PRE>
  2555.     open(FOO, "cat -n '$file'|");
  2556.     open(FOO, '-|', "cat -n '$file'");
  2557.     open(FOO, '-|') || exec 'cat', '-n', $file;</PRE>
  2558. <P>See <A HREF="../../lib/Pod/perlipc.html#safe pipe opens">Safe Pipe Opens in the perlipc manpage</A> for more examples of this.</P>
  2559. <P>Beginning with v5.6.0, Perl will attempt to flush all files opened for
  2560. output before any operation that may do a fork, but this may not be
  2561. supported on some platforms (see <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>).  To be safe, you may need
  2562. to set <CODE>$|</CODE> ($AUTOFLUSH in English) or call the <A HREF="../../lib/Pod/perlvar.html#item_autoflush"><CODE>autoflush()</CODE></A> method
  2563. of <CODE>IO::Handle</CODE> on any open handles.</P>
  2564. <P>On systems that support a
  2565. close-on-exec flag on files, the flag will be set for the newly opened
  2566. file descriptor as determined by the value of $^F.  See <A HREF="../../lib/Pod/perlvar.html#$^f">$^F in the perlvar manpage</A>.</P>
  2567. <P>Closing any piped filehandle causes the parent process to wait for the
  2568. child to finish, and returns the status value in <CODE>$?</CODE>.</P>
  2569. <P>The filename passed to 2-argument (or 1-argument) form of <A HREF="#item_open"><CODE>open()</CODE></A>
  2570. will have leading and trailing
  2571. whitespace deleted, and the normal redirection characters
  2572. honored.  This property, known as ``magic open'', 
  2573. can often be used to good effect.  A user could specify a filename of
  2574. <EM>``rsh cat file |''</EM>, or you could change certain filenames as needed:</P>
  2575. <PRE>
  2576.     $filename =~ s/(.*\.gz)\s*$/gzip -dc < $1|/;
  2577.     open(FH, $filename) or die "Can't open $filename: $!";</PRE>
  2578. <P>Use 3-argument form to open a file with arbitrary weird characters in it,</P>
  2579. <PRE>
  2580.     open(FOO, '<', $file);</PRE>
  2581. <P>otherwise it's necessary to protect any leading and trailing whitespace:</P>
  2582. <PRE>
  2583.     $file =~ s#^(\s)#./$1#;
  2584.     open(FOO, "< $file\0");</PRE>
  2585. <P>(this may not work on some bizzare filesystems).  One should
  2586. conscientiously choose between the the <EM>magic</EM> and 3-arguments form
  2587. of open():</P>
  2588. <PRE>
  2589.     open IN, $ARGV[0];</PRE>
  2590. <P>will allow the user to specify an argument of the form <CODE>"rsh cat file |"</CODE>,
  2591. but will not work on a filename which happens to have a trailing space, while</P>
  2592. <PRE>
  2593.     open IN, '<', $ARGV[0];</PRE>
  2594. <P>will have exactly the opposite restrictions.</P>
  2595. <P>If you want a ``real'' C <A HREF="#item_open"><CODE>open</CODE></A> (see <A HREF="#item_open">open(2)</A> on your system), then you
  2596. should use the <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> function, which involves no such magic (but
  2597. may use subtly different filemodes than Perl open(), which is mapped
  2598. to C fopen()).  This is
  2599. another way to protect your filenames from interpretation.  For example:</P>
  2600. <PRE>
  2601.     use IO::Handle;
  2602.     sysopen(HANDLE, $path, O_RDWR|O_CREAT|O_EXCL)
  2603.         or die "sysopen $path: $!";
  2604.     $oldfh = select(HANDLE); $| = 1; select($oldfh);
  2605.     print HANDLE "stuff $$\n");
  2606.     seek(HANDLE, 0, 0);
  2607.     print "File contains: ", <HANDLE>;</PRE>
  2608. <P>Using the constructor from the <CODE>IO::Handle</CODE> package (or one of its
  2609. subclasses, such as <CODE>IO::File</CODE> or <CODE>IO::Socket</CODE>), you can generate anonymous
  2610. filehandles that have the scope of whatever variables hold references to
  2611. them, and automatically close whenever and however you leave that scope:</P>
  2612. <PRE>
  2613.     use IO::File;
  2614.     #...
  2615.     sub read_myfile_munged {
  2616.         my $ALL = shift;
  2617.         my $handle = new IO::File;
  2618.         open($handle, "myfile") or die "myfile: $!";
  2619.         $first = <$handle>
  2620.             or return ();     # Automatically closed here.
  2621.         mung $first or die "mung failed";       # Or here.
  2622.         return $first, <$handle> if $ALL;       # Or here.
  2623.         $first;                                 # Or here.
  2624.     }</PRE>
  2625. <P>See <A HREF="#seek">seek</A> for some details about mixing reading and writing.</P>
  2626. <P></P>
  2627. <DT><STRONG><A NAME="item_opendir">opendir DIRHANDLE,EXPR</A></STRONG><BR>
  2628. <DD>
  2629. Opens a directory named EXPR for processing by <A HREF="#item_readdir"><CODE>readdir</CODE></A>, <A HREF="#item_telldir"><CODE>telldir</CODE></A>,
  2630. <A HREF="#item_seekdir"><CODE>seekdir</CODE></A>, <A HREF="#item_rewinddir"><CODE>rewinddir</CODE></A>, and <A HREF="#item_closedir"><CODE>closedir</CODE></A>.  Returns true if successful.
  2631. DIRHANDLEs have their own namespace separate from FILEHANDLEs.
  2632. <P></P>
  2633. <DT><STRONG><A NAME="item_ord">ord EXPR</A></STRONG><BR>
  2634. <DD>
  2635. <DT><STRONG>ord</STRONG><BR>
  2636. <DD>
  2637. Returns the numeric (ASCII or Unicode) value of the first character of EXPR.  If
  2638. EXPR is omitted, uses <CODE>$_</CODE>.  For the reverse, see <A HREF="#chr">chr</A>.
  2639. See <A HREF="../../lib/utf8.html">the utf8 manpage</A> for more about Unicode.
  2640. <P></P>
  2641. <DT><STRONG><A NAME="item_our">our EXPR</A></STRONG><BR>
  2642. <DD>
  2643. An <A HREF="#item_our"><CODE>our</CODE></A> declares the listed variables to be valid globals within
  2644. the enclosing block, file, or <A HREF="#item_eval"><CODE>eval</CODE></A>.  That is, it has the same
  2645. scoping rules as a ``my'' declaration, but does not create a local
  2646. variable.  If more than one value is listed, the list must be placed
  2647. in parentheses.  The <A HREF="#item_our"><CODE>our</CODE></A> declaration has no semantic effect unless
  2648. ``use strict vars'' is in effect, in which case it lets you use the
  2649. declared global variable without qualifying it with a package name.
  2650. (But only within the lexical scope of the <A HREF="#item_our"><CODE>our</CODE></A> declaration.  In this
  2651. it differs from ``use vars'', which is package scoped.)
  2652. <P>An <A HREF="#item_our"><CODE>our</CODE></A> declaration declares a global variable that will be visible
  2653. across its entire lexical scope, even across package boundaries.  The
  2654. package in which the variable is entered is determined at the point
  2655. of the declaration, not at the point of use.  This means the following
  2656. behavior holds:</P>
  2657. <PRE>
  2658.     package Foo;
  2659.     our $bar;           # declares $Foo::bar for rest of lexical scope
  2660.     $bar = 20;</PRE>
  2661. <PRE>
  2662.     package Bar;
  2663.     print $bar;         # prints 20</PRE>
  2664. <P>Multiple <A HREF="#item_our"><CODE>our</CODE></A> declarations in the same lexical scope are allowed
  2665. if they are in different packages.  If they happened to be in the same
  2666. package, Perl will emit warnings if you have asked for them.</P>
  2667. <PRE>
  2668.     use warnings;
  2669.     package Foo;
  2670.     our $bar;           # declares $Foo::bar for rest of lexical scope
  2671.     $bar = 20;</PRE>
  2672. <PRE>
  2673.     package Bar;
  2674.     our $bar = 30;      # declares $Bar::bar for rest of lexical scope
  2675.     print $bar;         # prints 30</PRE>
  2676. <PRE>
  2677.     our $bar;           # emits warning</PRE>
  2678. <P></P>
  2679. <DT><STRONG><A NAME="item_pack">pack TEMPLATE,LIST</A></STRONG><BR>
  2680. <DD>
  2681. Takes a LIST of values and converts it into a string using the rules
  2682. given by the TEMPLATE.  The resulting string is the concatenation of
  2683. the converted values.  Typically, each converted value looks
  2684. like its machine-level representation.  For example, on 32-bit machines
  2685. a converted integer may be represented by a sequence of 4 bytes.
  2686. <P>The TEMPLATE is a
  2687. sequence of characters that give the order and type of values, as
  2688. follows:</P>
  2689. <PRE>
  2690.     a   A string with arbitrary binary data, will be null padded.
  2691.     A   An ascii string, will be space padded.
  2692.     Z   A null terminated (asciz) string, will be null padded.</PRE>
  2693. <PRE>
  2694.     b   A bit string (ascending bit order inside each byte, like vec()).
  2695.     B   A bit string (descending bit order inside each byte).
  2696.     h   A hex string (low nybble first).
  2697.     H   A hex string (high nybble first).</PRE>
  2698. <PRE>
  2699.     c   A signed char value.
  2700.     C   An unsigned char value.  Only does bytes.  See U for Unicode.</PRE>
  2701. <PRE>
  2702.     s   A signed short value.
  2703.     S   An unsigned short value.
  2704.           (This 'short' is _exactly_ 16 bits, which may differ from
  2705.            what a local C compiler calls 'short'.  If you want
  2706.            native-length shorts, use the '!' suffix.)</PRE>
  2707. <PRE>
  2708.     i   A signed integer value.
  2709.     I   An unsigned integer value.
  2710.           (This 'integer' is _at_least_ 32 bits wide.  Its exact
  2711.            size depends on what a local C compiler calls 'int',
  2712.            and may even be larger than the 'long' described in
  2713.            the next item.)</PRE>
  2714. <PRE>
  2715.     l   A signed long value.
  2716.     L   An unsigned long value.
  2717.           (This 'long' is _exactly_ 32 bits, which may differ from
  2718.            what a local C compiler calls 'long'.  If you want
  2719.            native-length longs, use the '!' suffix.)</PRE>
  2720. <PRE>
  2721.     n   An unsigned short in "network" (big-endian) order.
  2722.     N   An unsigned long in "network" (big-endian) order.
  2723.     v   An unsigned short in "VAX" (little-endian) order.
  2724.     V   An unsigned long in "VAX" (little-endian) order.
  2725.           (These 'shorts' and 'longs' are _exactly_ 16 bits and
  2726.            _exactly_ 32 bits, respectively.)</PRE>
  2727. <PRE>
  2728.     q   A signed quad (64-bit) value.
  2729.     Q   An unsigned quad value.
  2730.           (Quads are available only if your system supports 64-bit
  2731.            integer values _and_ if Perl has been compiled to support those.
  2732.            Causes a fatal error otherwise.)</PRE>
  2733. <PRE>
  2734.     f   A single-precision float in the native format.
  2735.     d   A double-precision float in the native format.</PRE>
  2736. <PRE>
  2737.     p   A pointer to a null-terminated string.
  2738.     P   A pointer to a structure (fixed-length string).</PRE>
  2739. <PRE>
  2740.     u   A uuencoded string.
  2741.     U   A Unicode character number.  Encodes to UTF-8 internally.
  2742.         Works even if C<use utf8> is not in effect.</PRE>
  2743. <PRE>
  2744.     w   A BER compressed integer.  Its bytes represent an unsigned
  2745.         integer in base 128, most significant digit first, with as
  2746.         few digits as possible.  Bit eight (the high bit) is set
  2747.         on each byte except the last.</PRE>
  2748. <PRE>
  2749.     x   A null byte.
  2750.     X   Back up a byte.
  2751.     @   Null fill to absolute position.</PRE>
  2752. <P>The following rules apply:</P>
  2753. <UL>
  2754. <LI>
  2755. Each letter may optionally be followed by a number giving a repeat
  2756. count.  With all types except <CODE>a</CODE>, <CODE>A</CODE>, <CODE>Z</CODE>, <CODE>b</CODE>, <CODE>B</CODE>, <CODE>h</CODE>,
  2757. <CODE>H</CODE>, and <CODE>P</CODE> the pack function will gobble up that many values from
  2758. the LIST.  A <CODE>*</CODE> for the repeat count means to use however many items are
  2759. left, except for <CODE>@</CODE>, <CODE>x</CODE>, <CODE>X</CODE>, where it is equivalent
  2760. to <CODE>0</CODE>, and <CODE>u</CODE>, where it is equivalent to 1 (or 45, what is the
  2761. same).
  2762. <P>When used with <CODE>Z</CODE>, <CODE>*</CODE> results in the addition of a trailing null
  2763. byte (so the packed result will be one longer than the byte <A HREF="#item_length"><CODE>length</CODE></A>
  2764. of the item).</P>
  2765. <P>The repeat count for <CODE>u</CODE> is interpreted as the maximal number of bytes
  2766. to encode per line of output, with 0 and 1 replaced by 45.</P>
  2767. <P></P>
  2768. <LI>
  2769. The <CODE>a</CODE>, <CODE>A</CODE>, and <CODE>Z</CODE> types gobble just one value, but pack it as a
  2770. string of length count, padding with nulls or spaces as necessary.  When
  2771. unpacking, <CODE>A</CODE> strips trailing spaces and nulls, <CODE>Z</CODE> strips everything
  2772. after the first null, and <CODE>a</CODE> returns data verbatim.  When packing,
  2773. <CODE>a</CODE>, and <CODE>Z</CODE> are equivalent.
  2774. <P>If the value-to-pack is too long, it is truncated.  If too long and an
  2775. explicit count is provided, <CODE>Z</CODE> packs only <CODE>$count-1</CODE> bytes, followed
  2776. by a null byte.  Thus <CODE>Z</CODE> always packs a trailing null byte under
  2777. all circumstances.</P>
  2778. <P></P>
  2779. <LI>
  2780. Likewise, the <CODE>b</CODE> and <CODE>B</CODE> fields pack a string that many bits long.
  2781. Each byte of the input field of <A HREF="#item_pack"><CODE>pack()</CODE></A> generates 1 bit of the result.
  2782. Each result bit is based on the least-significant bit of the corresponding
  2783. input byte, i.e., on <A HREF="#item_ord"><CODE>ord($byte)%2</CODE></A>.  In particular, bytes <CODE>"0"</CODE> and
  2784. <CODE>"1"</CODE> generate bits 0 and 1, as do bytes <CODE>"\0"</CODE> and <CODE>"\1"</CODE>.
  2785. <P>Starting from the beginning of the input string of pack(), each 8-tuple
  2786. of bytes is converted to 1 byte of output.  With format <CODE>b</CODE>
  2787. the first byte of the 8-tuple determines the least-significant bit of a
  2788. byte, and with format <CODE>B</CODE> it determines the most-significant bit of
  2789. a byte.</P>
  2790. <P>If the length of the input string is not exactly divisible by 8, the
  2791. remainder is packed as if the input string were padded by null bytes
  2792. at the end.  Similarly, during unpack()ing the ``extra'' bits are ignored.</P>
  2793. <P>If the input string of <A HREF="#item_pack"><CODE>pack()</CODE></A> is longer than needed, extra bytes are ignored.
  2794. A <CODE>*</CODE> for the repeat count of <A HREF="#item_pack"><CODE>pack()</CODE></A> means to use all the bytes of
  2795. the input field.  On unpack()ing the bits are converted to a string
  2796. of <CODE>"0"</CODE>s and <CODE>"1"</CODE>s.</P>
  2797. <P></P>
  2798. <LI>
  2799. The <CODE>h</CODE> and <CODE>H</CODE> fields pack a string that many nybbles (4-bit groups,
  2800. representable as hexadecimal digits, 0-9a-f) long.
  2801. <P>Each byte of the input field of <A HREF="#item_pack"><CODE>pack()</CODE></A> generates 4 bits of the result.
  2802. For non-alphabetical bytes the result is based on the 4 least-significant
  2803. bits of the input byte, i.e., on <A HREF="#item_ord"><CODE>ord($byte)%16</CODE></A>.  In particular,
  2804. bytes <CODE>"0"</CODE> and <CODE>"1"</CODE> generate nybbles 0 and 1, as do bytes
  2805. <CODE>"\0"</CODE> and <CODE>"\1"</CODE>.  For bytes <CODE>"a".."f"</CODE> and <CODE>"A".."F"</CODE> the result
  2806. is compatible with the usual hexadecimal digits, so that <CODE>"a"</CODE> and
  2807. <CODE>"A"</CODE> both generate the nybble <CODE>0xa==10</CODE>.  The result for bytes
  2808. <CODE>"g".."z"</CODE> and <CODE>"G".."Z"</CODE> is not well-defined.</P>
  2809. <P>Starting from the beginning of the input string of pack(), each pair
  2810. of bytes is converted to 1 byte of output.  With format <CODE>h</CODE> the
  2811. first byte of the pair determines the least-significant nybble of the
  2812. output byte, and with format <CODE>H</CODE> it determines the most-significant
  2813. nybble.</P>
  2814. <P>If the length of the input string is not even, it behaves as if padded
  2815. by a null byte at the end.  Similarly, during unpack()ing the ``extra''
  2816. nybbles are ignored.</P>
  2817. <P>If the input string of <A HREF="#item_pack"><CODE>pack()</CODE></A> is longer than needed, extra bytes are ignored.
  2818. A <CODE>*</CODE> for the repeat count of <A HREF="#item_pack"><CODE>pack()</CODE></A> means to use all the bytes of
  2819. the input field.  On unpack()ing the bits are converted to a string
  2820. of hexadecimal digits.</P>
  2821. <P></P>
  2822. <LI>
  2823. The <CODE>p</CODE> type packs a pointer to a null-terminated string.  You are
  2824. responsible for ensuring the string is not a temporary value (which can
  2825. potentially get deallocated before you get around to using the packed result).
  2826. The <CODE>P</CODE> type packs a pointer to a structure of the size indicated by the
  2827. length.  A NULL pointer is created if the corresponding value for <CODE>p</CODE> or
  2828. <CODE>P</CODE> is <A HREF="#item_undef"><CODE>undef</CODE></A>, similarly for unpack().
  2829. <P></P>
  2830. <LI>
  2831. The <CODE>/</CODE> template character allows packing and unpacking of strings where
  2832. the packed structure contains a byte count followed by the string itself.
  2833. You write <EM>length-item</EM><CODE>/</CODE><EM>string-item</EM>.
  2834. <P>The <EM>length-item</EM> can be any <A HREF="#item_pack"><CODE>pack</CODE></A> template letter,
  2835. and describes how the length value is packed.
  2836. The ones likely to be of most use are integer-packing ones like
  2837. <CODE>n</CODE> (for Java strings), <CODE>w</CODE> (for ASN.1 or SNMP)
  2838. and <CODE>N</CODE> (for Sun XDR).</P>
  2839. <P>The <EM>string-item</EM> must, at present, be <CODE>"A*"</CODE>, <CODE>"a*"</CODE> or <CODE>"Z*"</CODE>.
  2840. For <A HREF="#item_unpack"><CODE>unpack</CODE></A> the length of the string is obtained from the <EM>length-item</EM>,
  2841. but if you put in the '*' it will be ignored.</P>
  2842. <PRE>
  2843.     unpack 'C/a', "\04Gurusamy";        gives 'Guru'
  2844.     unpack 'a3/A* A*', '007 Bond  J ';  gives (' Bond','J')
  2845.     pack 'n/a* w/a*','hello,','world';  gives "\000\006hello,\005world"</PRE>
  2846. <P>The <EM>length-item</EM> is not returned explicitly from <A HREF="#item_unpack"><CODE>unpack</CODE></A>.</P>
  2847. <P>Adding a count to the <EM>length-item</EM> letter is unlikely to do anything
  2848. useful, unless that letter is <CODE>A</CODE>, <CODE>a</CODE> or <CODE>Z</CODE>.  Packing with a
  2849. <EM>length-item</EM> of <CODE>a</CODE> or <CODE>Z</CODE> may introduce <CODE>"\000"</CODE> characters,
  2850. which Perl does not regard as legal in numeric strings.</P>
  2851. <P></P>
  2852. <LI>
  2853. The integer types <A HREF="../../lib/Pod/perlfunc.html#item_s"><CODE>s</CODE></A>, <CODE>S</CODE>, <CODE>l</CODE>, and <CODE>L</CODE> may be
  2854. immediately followed by a <CODE>!</CODE> suffix to signify native shorts or
  2855. longs--as you can see from above for example a bare <CODE>l</CODE> does mean
  2856. exactly 32 bits, the native <CODE>long</CODE> (as seen by the local C compiler)
  2857. may be larger.  This is an issue mainly in 64-bit platforms.  You can
  2858. see whether using <CODE>!</CODE> makes any difference by
  2859. <PRE>
  2860.         print length(pack("s")), " ", length(pack("s!")), "\n";
  2861.         print length(pack("l")), " ", length(pack("l!")), "\n";</PRE>
  2862. <P><CODE>i!</CODE> and <CODE>I!</CODE> also work but only because of completeness;
  2863. they are identical to <CODE>i</CODE> and <CODE>I</CODE>.</P>
  2864. <P>The actual sizes (in bytes) of native shorts, ints, longs, and long
  2865. longs on the platform where Perl was built are also available via
  2866. <A HREF="../../lib/Config.html">the Config manpage</A>:</P>
  2867. <PRE>
  2868.        use Config;
  2869.        print $Config{shortsize},    "\n";
  2870.        print $Config{intsize},      "\n";
  2871.        print $Config{longsize},     "\n";
  2872.        print $Config{longlongsize}, "\n";</PRE>
  2873. <P>(The <CODE>$Config{longlongsize}</CODE> will be undefine if your system does
  2874. not support long longs.)</P>
  2875. <P></P>
  2876. <LI>
  2877. The integer formats <A HREF="../../lib/Pod/perlfunc.html#item_s"><CODE>s</CODE></A>, <CODE>S</CODE>, <CODE>i</CODE>, <CODE>I</CODE>, <CODE>l</CODE>, and <CODE>L</CODE>
  2878. are inherently non-portable between processors and operating systems
  2879. because they obey the native byteorder and endianness.  For example a
  2880. 4-byte integer 0x12345678 (305419896 decimal) be ordered natively
  2881. (arranged in and handled by the CPU registers) into bytes as
  2882. <PRE>
  2883.         0x12 0x34 0x56 0x78     # little-endian
  2884.         0x78 0x56 0x34 0x12     # big-endian</PRE>
  2885. <P>Basically, the Intel, Alpha, and VAX CPUs are little-endian, while
  2886. everybody else, for example Motorola m68k/88k, PPC, Sparc, HP PA,
  2887. Power, and Cray are big-endian.  MIPS can be either: Digital used it
  2888. in little-endian mode; SGI uses it in big-endian mode.</P>
  2889. <P>The names `big-endian' and `little-endian' are comic references to
  2890. the classic ``Gulliver's Travels'' (via the paper ``On Holy Wars and a
  2891. Plea for Peace'' by Danny Cohen, USC/ISI IEN 137, April 1, 1980) and
  2892. the egg-eating habits of the Lilliputians.</P>
  2893. <P>Some systems may have even weirder byte orders such as</P>
  2894. <PRE>
  2895.         0x56 0x78 0x12 0x34
  2896.         0x34 0x12 0x78 0x56</PRE>
  2897. <P>You can see your system's preference with</P>
  2898. <PRE>
  2899.         print join(" ", map { sprintf "%#02x", $_ }
  2900.                             unpack("C*",pack("L",0x12345678))), "\n";</PRE>
  2901. <P>The byteorder on the platform where Perl was built is also available
  2902. via <A HREF="../../lib/Config.html">the Config manpage</A>:</P>
  2903. <PRE>
  2904.         use Config;
  2905.         print $Config{byteorder}, "\n";</PRE>
  2906. <P>Byteorders <CODE>'1234'</CODE> and <CODE>'12345678'</CODE> are little-endian, <CODE>'4321'</CODE>
  2907. and <CODE>'87654321'</CODE> are big-endian.</P>
  2908. <P>If you want portable packed integers use the formats <CODE>n</CODE>, <CODE>N</CODE>,
  2909. <CODE>v</CODE>, and <CODE>V</CODE>, their byte endianness and size is known.
  2910. See also <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>.</P>
  2911. <P></P>
  2912. <LI>
  2913. Real numbers (floats and doubles) are in the native machine format only;
  2914. due to the multiplicity of floating formats around, and the lack of a
  2915. standard ``network'' representation, no facility for interchange has been
  2916. made.  This means that packed floating point data written on one machine
  2917. may not be readable on another - even if both use IEEE floating point
  2918. arithmetic (as the endian-ness of the memory representation is not part
  2919. of the IEEE spec).  See also <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>.
  2920. <P>Note that Perl uses doubles internally for all numeric calculation, and
  2921. converting from double into float and thence back to double again will
  2922. lose precision (i.e., <A HREF="#item_unpack"><CODE>unpack("f", pack("f", $foo)</CODE></A>) will not in general
  2923. equal $foo).</P>
  2924. <P></P>
  2925. <LI>
  2926. You must yourself do any alignment or padding by inserting for example
  2927. enough <CODE>'x'</CODE>es while packing.  There is no way to <A HREF="#item_pack"><CODE>pack()</CODE></A> and <A HREF="#item_unpack"><CODE>unpack()</CODE></A>
  2928. could know where the bytes are going to or coming from.  Therefore
  2929. <A HREF="#item_pack"><CODE>pack</CODE></A> (and <A HREF="#item_unpack"><CODE>unpack</CODE></A>) handle their output and input as flat
  2930. sequences of bytes.
  2931. <P></P>
  2932. <LI>
  2933. A comment in a TEMPLATE starts with <CODE>#</CODE> and goes to the end of line.
  2934. <P></P>
  2935. <LI>
  2936. If TEMPLATE requires more arguments to <A HREF="#item_pack"><CODE>pack()</CODE></A> than actually given, <A HREF="#item_pack"><CODE>pack()</CODE></A>
  2937. assumes additional <CODE>""</CODE> arguments.  If TEMPLATE requires less arguments
  2938. to <A HREF="#item_pack"><CODE>pack()</CODE></A> than actually given, extra arguments are ignored.
  2939. <P></P></UL>
  2940. <P>Examples:</P>
  2941. <PRE>
  2942.     $foo = pack("CCCC",65,66,67,68);
  2943.     # foo eq "ABCD"
  2944.     $foo = pack("C4",65,66,67,68);
  2945.     # same thing
  2946.     $foo = pack("U4",0x24b6,0x24b7,0x24b8,0x24b9);
  2947.     # same thing with Unicode circled letters</PRE>
  2948. <PRE>
  2949.     $foo = pack("ccxxcc",65,66,67,68);
  2950.     # foo eq "AB\0\0CD"</PRE>
  2951. <PRE>
  2952.     # note: the above examples featuring "C" and "c" are true
  2953.     # only on ASCII and ASCII-derived systems such as ISO Latin 1
  2954.     # and UTF-8.  In EBCDIC the first example would be
  2955.     # $foo = pack("CCCC",193,194,195,196);</PRE>
  2956. <PRE>
  2957.     $foo = pack("s2",1,2);
  2958.     # "\1\0\2\0" on little-endian
  2959.     # "\0\1\0\2" on big-endian</PRE>
  2960. <PRE>
  2961.     $foo = pack("a4","abcd","x","y","z");
  2962.     # "abcd"</PRE>
  2963. <PRE>
  2964.     $foo = pack("aaaa","abcd","x","y","z");
  2965.     # "axyz"</PRE>
  2966. <PRE>
  2967.     $foo = pack("a14","abcdefg");
  2968.     # "abcdefg\0\0\0\0\0\0\0"</PRE>
  2969. <PRE>
  2970.     $foo = pack("i9pl", gmtime);
  2971.     # a real struct tm (on my system anyway)</PRE>
  2972. <PRE>
  2973.     $utmp_template = "Z8 Z8 Z16 L";
  2974.     $utmp = pack($utmp_template, @utmp1);
  2975.     # a struct utmp (BSDish)</PRE>
  2976. <PRE>
  2977.     @utmp2 = unpack($utmp_template, $utmp);
  2978.     # "@utmp1" eq "@utmp2"</PRE>
  2979. <PRE>
  2980.     sub bintodec {
  2981.         unpack("N", pack("B32", substr("0" x 32 . shift, -32)));
  2982.     }</PRE>
  2983. <PRE>
  2984.     $foo = pack('sx2l', 12, 34);
  2985.     # short 12, two zero bytes padding, long 34
  2986.     $bar = pack('s@4l', 12, 34);
  2987.     # short 12, zero fill to position 4, long 34
  2988.     # $foo eq $bar</PRE>
  2989. <P>The same template may generally also be used in unpack().</P>
  2990. <DT><STRONG><A NAME="item_package">package</A></STRONG><BR>
  2991. <DD>
  2992. <DT><STRONG>package NAMESPACE</STRONG><BR>
  2993. <DD>
  2994. Declares the compilation unit as being in the given namespace.  The scope
  2995. of the package declaration is from the declaration itself through the end
  2996. of the enclosing block, file, or eval (the same as the <A HREF="#item_my"><CODE>my</CODE></A> operator).
  2997. All further unqualified dynamic identifiers will be in this namespace.
  2998. A package statement affects only dynamic variables--including those
  2999. you've used <A HREF="#item_local"><CODE>local</CODE></A> on--but <EM>not</EM> lexical variables, which are created
  3000. with <A HREF="#item_my"><CODE>my</CODE></A>.  Typically it would be the first declaration in a file to
  3001. be included by the <A HREF="#item_require"><CODE>require</CODE></A> or <A HREF="#item_use"><CODE>use</CODE></A> operator.  You can switch into a
  3002. package in more than one place; it merely influences which symbol table
  3003. is used by the compiler for the rest of that block.  You can refer to
  3004. variables and filehandles in other packages by prefixing the identifier
  3005. with the package name and a double colon:  <CODE>$Package::Variable</CODE>.
  3006. If the package name is null, the <CODE>main</CODE> package as assumed.  That is,
  3007. <CODE>$::sail</CODE> is equivalent to <CODE>$main::sail</CODE> (as well as to <CODE>$main'sail</CODE>,
  3008. still seen in older code).
  3009. <P>If NAMESPACE is omitted, then there is no current package, and all
  3010. identifiers must be fully qualified or lexicals.  This is stricter
  3011. than <CODE>use strict</CODE>, since it also extends to function names.</P>
  3012. <P>See <A HREF="../../lib/Pod/perlmod.html#packages">Packages in the perlmod manpage</A> for more information about packages, modules,
  3013. and classes.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A> for other scoping issues.</P>
  3014. <P></P>
  3015. <DT><STRONG><A NAME="item_pipe">pipe READHANDLE,WRITEHANDLE</A></STRONG><BR>
  3016. <DD>
  3017. Opens a pair of connected pipes like the corresponding system call.
  3018. Note that if you set up a loop of piped processes, deadlock can occur
  3019. unless you are very careful.  In addition, note that Perl's pipes use
  3020. stdio buffering, so you may need to set <CODE>$|</CODE> to flush your WRITEHANDLE
  3021. after each command, depending on the application.
  3022. <P>See <A HREF="../../lib/IPC/Open2.html">the IPC::Open2 manpage</A>, <A HREF="../../lib/IPC/Open3.html">the IPC::Open3 manpage</A>, and <A HREF="../../lib/Pod/perlipc.html#bidirectional communication">Bidirectional Communication in the perlipc manpage</A>
  3023. for examples of such things.</P>
  3024. <P>On systems that support a close-on-exec flag on files, the flag will be set
  3025. for the newly opened file descriptors as determined by the value of $^F.
  3026. See <A HREF="../../lib/Pod/perlvar.html#$^f">$^F in the perlvar manpage</A>.</P>
  3027. <P></P>
  3028. <DT><STRONG><A NAME="item_pop">pop ARRAY</A></STRONG><BR>
  3029. <DD>
  3030. <DT><STRONG>pop</STRONG><BR>
  3031. <DD>
  3032. Pops and returns the last value of the array, shortening the array by
  3033. one element.  Has an effect similar to
  3034. <PRE>
  3035.     $ARRAY[$#ARRAY--]</PRE>
  3036. <P>If there are no elements in the array, returns the undefined value
  3037. (although this may happen at other times as well).  If ARRAY is
  3038. omitted, pops the <CODE>@ARGV</CODE> array in the main program, and the <CODE>@_</CODE>
  3039. array in subroutines, just like <A HREF="#item_shift"><CODE>shift</CODE></A>.</P>
  3040. <P></P>
  3041. <DT><STRONG><A NAME="item_pos">pos SCALAR</A></STRONG><BR>
  3042. <DD>
  3043. <DT><STRONG>pos</STRONG><BR>
  3044. <DD>
  3045. Returns the offset of where the last <A HREF="#item_m/"><CODE>m//g</CODE></A> search left off for the variable
  3046. is in question (<CODE>$_</CODE> is used when the variable is not specified).  May be
  3047. modified to change that offset.  Such modification will also influence
  3048. the <CODE>\G</CODE> zero-width assertion in regular expressions.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A> and
  3049. <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  3050. <P></P>
  3051. <DT><STRONG><A NAME="item_print">print FILEHANDLE LIST</A></STRONG><BR>
  3052. <DD>
  3053. <DT><STRONG>print LIST</STRONG><BR>
  3054. <DD>
  3055. <DT><STRONG>print</STRONG><BR>
  3056. <DD>
  3057. Prints a string or a list of strings.  Returns true if successful.
  3058. FILEHANDLE may be a scalar variable name, in which case the variable
  3059. contains the name of or a reference to the filehandle, thus introducing
  3060. one level of indirection.  (NOTE: If FILEHANDLE is a variable and
  3061. the next token is a term, it may be misinterpreted as an operator
  3062. unless you interpose a <CODE>+</CODE> or put parentheses around the arguments.)
  3063. If FILEHANDLE is omitted, prints by default to standard output (or
  3064. to the last selected output channel--see <A HREF="#select">select</A>).  If LIST is
  3065. also omitted, prints <CODE>$_</CODE> to the currently selected output channel.
  3066. To set the default output channel to something other than STDOUT
  3067. use the select operation.  The current value of <CODE>$,</CODE> (if any) is
  3068. printed between each LIST item.  The current value of <CODE>$\</CODE> (if
  3069. any) is printed after the entire LIST has been printed.  Because
  3070. print takes a LIST, anything in the LIST is evaluated in list
  3071. context, and any subroutine that you call will have one or more of
  3072. its expressions evaluated in list context.  Also be careful not to
  3073. follow the print keyword with a left parenthesis unless you want
  3074. the corresponding right parenthesis to terminate the arguments to
  3075. the print--interpose a <CODE>+</CODE> or put parentheses around all the
  3076. arguments.
  3077. <P>Note that if you're storing FILEHANDLES in an array or other expression,
  3078. you will have to use a block returning its value instead:</P>
  3079. <PRE>
  3080.     print { $files[$i] } "stuff\n";
  3081.     print { $OK ? STDOUT : STDERR } "stuff\n";</PRE>
  3082. <P></P>
  3083. <DT><STRONG><A NAME="item_printf">printf FILEHANDLE FORMAT, LIST</A></STRONG><BR>
  3084. <DD>
  3085. <DT><STRONG>printf FORMAT, LIST</STRONG><BR>
  3086. <DD>
  3087. Equivalent to <A HREF="#item_sprintf"><CODE>print FILEHANDLE sprintf(FORMAT, LIST)</CODE></A>, except that <CODE>$\</CODE>
  3088. (the output record separator) is not appended.  The first argument
  3089. of the list will be interpreted as the <A HREF="#item_printf"><CODE>printf</CODE></A> format.  If <CODE>use locale</CODE> is
  3090. in effect, the character used for the decimal point in formatted real numbers
  3091. is affected by the LC_NUMERIC locale.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.
  3092. <P>Don't fall into the trap of using a <A HREF="#item_printf"><CODE>printf</CODE></A> when a simple
  3093. <A HREF="#item_print"><CODE>print</CODE></A> would do.  The <A HREF="#item_print"><CODE>print</CODE></A> is more efficient and less
  3094. error prone.</P>
  3095. <P></P>
  3096. <DT><STRONG><A NAME="item_prototype">prototype FUNCTION</A></STRONG><BR>
  3097. <DD>
  3098. Returns the prototype of a function as a string (or <A HREF="#item_undef"><CODE>undef</CODE></A> if the
  3099. function has no prototype).  FUNCTION is a reference to, or the name of,
  3100. the function whose prototype you want to retrieve.
  3101. <P>If FUNCTION is a string starting with <CODE>CORE::</CODE>, the rest is taken as a
  3102. name for Perl builtin.  If the builtin is not <EM>overridable</EM> (such as
  3103. <A HREF="#item_qw/"><CODE>qw//</CODE></A>) or its arguments cannot be expressed by a prototype (such as
  3104. <A HREF="#item_system"><CODE>system</CODE></A>) returns <A HREF="#item_undef"><CODE>undef</CODE></A> because the builtin does not really behave
  3105. like a Perl function.  Otherwise, the string describing the equivalent
  3106. prototype is returned.</P>
  3107. <P></P>
  3108. <DT><STRONG><A NAME="item_push">push ARRAY,LIST</A></STRONG><BR>
  3109. <DD>
  3110. Treats ARRAY as a stack, and pushes the values of LIST
  3111. onto the end of ARRAY.  The length of ARRAY increases by the length of
  3112. LIST.  Has the same effect as
  3113. <PRE>
  3114.     for $value (LIST) {
  3115.         $ARRAY[++$#ARRAY] = $value;
  3116.     }</PRE>
  3117. <P>but is more efficient.  Returns the new number of elements in the array.</P>
  3118. <P></P>
  3119. <DT><STRONG><A NAME="item_q/">q/STRING/</A></STRONG><BR>
  3120. <DD>
  3121. <DT><STRONG><A NAME="item_qq/">qq/STRING/</A></STRONG><BR>
  3122. <DD>
  3123. <DT><STRONG><A NAME="item_qr/">qr/STRING/</A></STRONG><BR>
  3124. <DD>
  3125. <DT><STRONG><A NAME="item_qx/">qx/STRING/</A></STRONG><BR>
  3126. <DD>
  3127. <DT><STRONG><A NAME="item_qw/">qw/STRING/</A></STRONG><BR>
  3128. <DD>
  3129. Generalized quotes.  See <A HREF="../../lib/Pod/perlop.html#regexp quotelike operators">Regexp Quote-Like Operators in the perlop manpage</A>.
  3130. <P></P>
  3131. <DT><STRONG><A NAME="item_quotemeta">quotemeta EXPR</A></STRONG><BR>
  3132. <DD>
  3133. <DT><STRONG>quotemeta</STRONG><BR>
  3134. <DD>
  3135. Returns the value of EXPR with all non-alphanumeric
  3136. characters backslashed.  (That is, all characters not matching
  3137. <CODE>/[A-Za-z_0-9]/</CODE> will be preceded by a backslash in the
  3138. returned string, regardless of any locale settings.)
  3139. This is the internal function implementing
  3140. the <CODE>\Q</CODE> escape in double-quoted strings.
  3141. <P>If EXPR is omitted, uses <CODE>$_</CODE>.</P>
  3142. <P></P>
  3143. <DT><STRONG><A NAME="item_rand">rand EXPR</A></STRONG><BR>
  3144. <DD>
  3145. <DT><STRONG>rand</STRONG><BR>
  3146. <DD>
  3147. Returns a random fractional number greater than or equal to <CODE>0</CODE> and less
  3148. than the value of EXPR.  (EXPR should be positive.)  If EXPR is
  3149. omitted, the value <CODE>1</CODE> is used.  Automatically calls <A HREF="#item_srand"><CODE>srand</CODE></A> unless
  3150. <A HREF="#item_srand"><CODE>srand</CODE></A> has already been called.  See also <A HREF="#item_srand"><CODE>srand</CODE></A>.
  3151. <P>(Note: If your rand function consistently returns numbers that are too
  3152. large or too small, then your version of Perl was probably compiled
  3153. with the wrong number of RANDBITS.)</P>
  3154. <P></P>
  3155. <DT><STRONG><A NAME="item_read">read FILEHANDLE,SCALAR,LENGTH,OFFSET</A></STRONG><BR>
  3156. <DD>
  3157. <DT><STRONG>read FILEHANDLE,SCALAR,LENGTH</STRONG><BR>
  3158. <DD>
  3159. Attempts to read LENGTH bytes of data into variable SCALAR from the
  3160. specified FILEHANDLE.  Returns the number of bytes actually read,
  3161. <CODE>0</CODE> at end of file, or undef if there was an error.  SCALAR will be grown
  3162. or shrunk to the length actually read.  An OFFSET may be specified to
  3163. place the read data at some other place than the beginning of the
  3164. string.  This call is actually implemented in terms of stdio's <CODE>fread(3)</CODE>
  3165. call.  To get a true <A HREF="#item_read"><CODE>read(2)</CODE></A> system call, see <A HREF="#item_sysread"><CODE>sysread</CODE></A>.
  3166. <P></P>
  3167. <DT><STRONG><A NAME="item_readdir">readdir DIRHANDLE</A></STRONG><BR>
  3168. <DD>
  3169. Returns the next directory entry for a directory opened by <A HREF="#item_opendir"><CODE>opendir</CODE></A>.
  3170. If used in list context, returns all the rest of the entries in the
  3171. directory.  If there are no more entries, returns an undefined value in
  3172. scalar context or a null list in list context.
  3173. <P>If you're planning to filetest the return values out of a <A HREF="#item_readdir"><CODE>readdir</CODE></A>, you'd
  3174. better prepend the directory in question.  Otherwise, because we didn't
  3175. <A HREF="#item_chdir"><CODE>chdir</CODE></A> there, it would have been testing the wrong file.</P>
  3176. <PRE>
  3177.     opendir(DIR, $some_dir) || die "can't opendir $some_dir: $!";
  3178.     @dots = grep { /^\./ && -f "$some_dir/$_" } readdir(DIR);
  3179.     closedir DIR;</PRE>
  3180. <P></P>
  3181. <DT><STRONG><A NAME="item_readline">readline EXPR</A></STRONG><BR>
  3182. <DD>
  3183. Reads from the filehandle whose typeglob is contained in EXPR.  In scalar
  3184. context, each call reads and returns the next line, until end-of-file is
  3185. reached, whereupon the subsequent call returns undef.  In list context,
  3186. reads until end-of-file is reached and returns a list of lines.  Note that
  3187. the notion of ``line'' used here is however you may have defined it
  3188. with <CODE>$/</CODE> or <CODE>$INPUT_RECORD_SEPARATOR</CODE>).  See <A HREF="../../lib/Pod/perlvar.html#$/">$/ in the perlvar manpage</A>.
  3189. <P>When <CODE>$/</CODE> is set to <A HREF="#item_undef"><CODE>undef</CODE></A>, when <A HREF="#item_readline"><CODE>readline()</CODE></A> is in scalar
  3190. context (i.e. file slurp mode), and when an empty file is read, it
  3191. returns <CODE>''</CODE> the first time, followed by <A HREF="#item_undef"><CODE>undef</CODE></A> subsequently.</P>
  3192. <P>This is the internal function implementing the <CODE><EXPR></CODE>
  3193. operator, but you can use it directly.  The <CODE><EXPR></CODE>
  3194. operator is discussed in more detail in <A HREF="../../lib/Pod/perlop.html#i/o operators">I/O Operators in the perlop manpage</A>.</P>
  3195. <PRE>
  3196.     $line = <STDIN>;
  3197.     $line = readline(*STDIN);           # same thing</PRE>
  3198. <P></P>
  3199. <DT><STRONG><A NAME="item_readlink">readlink EXPR</A></STRONG><BR>
  3200. <DD>
  3201. <DT><STRONG>readlink</STRONG><BR>
  3202. <DD>
  3203. Returns the value of a symbolic link, if symbolic links are
  3204. implemented.  If not, gives a fatal error.  If there is some system
  3205. error, returns the undefined value and sets <CODE>$!</CODE> (errno).  If EXPR is
  3206. omitted, uses <CODE>$_</CODE>.
  3207. <P></P>
  3208. <DT><STRONG><A NAME="item_readpipe">readpipe EXPR</A></STRONG><BR>
  3209. <DD>
  3210. EXPR is executed as a system command.
  3211. The collected standard output of the command is returned.
  3212. In scalar context, it comes back as a single (potentially
  3213. multi-line) string.  In list context, returns a list of lines
  3214. (however you've defined lines with <CODE>$/</CODE> or <CODE>$INPUT_RECORD_SEPARATOR</CODE>).
  3215. This is the internal function implementing the <A HREF="#item_qx/"><CODE>qx/EXPR/</CODE></A>
  3216. operator, but you can use it directly.  The <A HREF="#item_qx/"><CODE>qx/EXPR/</CODE></A>
  3217. operator is discussed in more detail in <A HREF="../../lib/Pod/perlop.html#i/o operators">I/O Operators in the perlop manpage</A>.
  3218. <P></P>
  3219. <DT><STRONG><A NAME="item_recv">recv SOCKET,SCALAR,LENGTH,FLAGS</A></STRONG><BR>
  3220. <DD>
  3221. Receives a message on a socket.  Attempts to receive LENGTH bytes of
  3222. data into variable SCALAR from the specified SOCKET filehandle.  SCALAR
  3223. will be grown or shrunk to the length actually read.  Takes the same
  3224. flags as the system call of the same name.  Returns the address of the
  3225. sender if SOCKET's protocol supports this; returns an empty string
  3226. otherwise.  If there's an error, returns the undefined value.  This call
  3227. is actually implemented in terms of <CODE>recvfrom(2)</CODE> system call.  See
  3228. <A HREF="../../lib/Pod/perlipc.html#udp: message passing">UDP: Message Passing in the perlipc manpage</A> for examples.
  3229. <P></P>
  3230. <DT><STRONG><A NAME="item_redo">redo LABEL</A></STRONG><BR>
  3231. <DD>
  3232. <DT><STRONG>redo</STRONG><BR>
  3233. <DD>
  3234. The <A HREF="#item_redo"><CODE>redo</CODE></A> command restarts the loop block without evaluating the
  3235. conditional again.  The <A HREF="#item_continue"><CODE>continue</CODE></A> block, if any, is not executed.  If
  3236. the LABEL is omitted, the command refers to the innermost enclosing
  3237. loop.  This command is normally used by programs that want to lie to
  3238. themselves about what was just input:
  3239. <PRE>
  3240.     # a simpleminded Pascal comment stripper
  3241.     # (warning: assumes no { or } in strings)
  3242.     LINE: while (<STDIN>) {
  3243.         while (s|({.*}.*){.*}|$1 |) {}
  3244.         s|{.*}| |;
  3245.         if (s|{.*| |) {
  3246.             $front = $_;
  3247.             while (<STDIN>) {
  3248.                 if (/}/) {      # end of comment?
  3249.                     s|^|$front\{|;
  3250.                     redo LINE;
  3251.                 }
  3252.             }
  3253.         }
  3254.         print;
  3255.     }</PRE>
  3256. <P><A HREF="#item_redo"><CODE>redo</CODE></A> cannot be used to retry a block which returns a value such as
  3257. <A HREF="#item_eval"><CODE>eval {}</CODE></A>, <A HREF="#item_sub"><CODE>sub {}</CODE></A> or <A HREF="#item_do"><CODE>do {}</CODE></A>, and should not be used to exit
  3258. a <A HREF="#item_grep"><CODE>grep()</CODE></A> or <A HREF="#item_map"><CODE>map()</CODE></A> operation.</P>
  3259. <P>Note that a block by itself is semantically identical to a loop
  3260. that executes once.  Thus <A HREF="#item_redo"><CODE>redo</CODE></A> inside such a block will effectively
  3261. turn it into a looping construct.</P>
  3262. <P>See also <A HREF="#continue">continue</A> for an illustration of how <A HREF="#item_last"><CODE>last</CODE></A>, <A HREF="#item_next"><CODE>next</CODE></A>, and
  3263. <A HREF="#item_redo"><CODE>redo</CODE></A> work.</P>
  3264. <P></P>
  3265. <DT><STRONG><A NAME="item_ref">ref EXPR</A></STRONG><BR>
  3266. <DD>
  3267. <DT><STRONG>ref</STRONG><BR>
  3268. <DD>
  3269. Returns a true value if EXPR is a reference, false otherwise.  If EXPR
  3270. is not specified, <CODE>$_</CODE> will be used.  The value returned depends on the
  3271. type of thing the reference is a reference to.
  3272. Builtin types include:
  3273. <PRE>
  3274.     SCALAR
  3275.     ARRAY
  3276.     HASH
  3277.     CODE
  3278.     REF
  3279.     GLOB
  3280.     LVALUE</PRE>
  3281. <P>If the referenced object has been blessed into a package, then that package
  3282. name is returned instead.  You can think of <A HREF="#item_ref"><CODE>ref</CODE></A> as a <CODE>typeof</CODE> operator.</P>
  3283. <PRE>
  3284.     if (ref($r) eq "HASH") {
  3285.         print "r is a reference to a hash.\n";
  3286.     }
  3287.     unless (ref($r)) {
  3288.         print "r is not a reference at all.\n";
  3289.     }
  3290.     if (UNIVERSAL::isa($r, "HASH")) {  # for subclassing
  3291.         print "r is a reference to something that isa hash.\n";
  3292.     }</PRE>
  3293. <P>See also <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  3294. <P></P>
  3295. <DT><STRONG><A NAME="item_rename">rename OLDNAME,NEWNAME</A></STRONG><BR>
  3296. <DD>
  3297. Changes the name of a file; an existing file NEWNAME will be
  3298. clobbered.  Returns true for success, false otherwise.
  3299. <P>Behavior of this function varies wildly depending on your system
  3300. implementation.  For example, it will usually not work across file system
  3301. boundaries, even though the system <EM>mv</EM> command sometimes compensates
  3302. for this.  Other restrictions include whether it works on directories,
  3303. open files, or pre-existing files.  Check <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> and either the
  3304. <A HREF="#item_rename"><CODE>rename(2)</CODE></A> manpage or equivalent system documentation for details.</P>
  3305. <P></P>
  3306. <DT><STRONG><A NAME="item_require">require VERSION</A></STRONG><BR>
  3307. <DD>
  3308. <DT><STRONG>require EXPR</STRONG><BR>
  3309. <DD>
  3310. <DT><STRONG>require</STRONG><BR>
  3311. <DD>
  3312. Demands some semantics specified by EXPR, or by <CODE>$_</CODE> if EXPR is not
  3313. supplied.
  3314. <P>If a VERSION is specified as a literal of the form v5.6.1,
  3315. demands that the current version of Perl (<CODE>$^V</CODE> or $PERL_VERSION) be
  3316. at least as recent as that version, at run time.  (For compatibility
  3317. with older versions of Perl, a numeric argument will also be interpreted
  3318. as VERSION.)  Compare with <A HREF="#use">use</A>, which can do a similar check at
  3319. compile time.</P>
  3320. <PRE>
  3321.     require v5.6.1;     # run time version check
  3322.     require 5.6.1;      # ditto
  3323.     require 5.005_03;   # float version allowed for compatibility</PRE>
  3324. <P>Otherwise, demands that a library file be included if it hasn't already
  3325. been included.  The file is included via the do-FILE mechanism, which is
  3326. essentially just a variety of <A HREF="#item_eval"><CODE>eval</CODE></A>.  Has semantics similar to the following
  3327. subroutine:</P>
  3328. <PRE>
  3329.     sub require {
  3330.         my($filename) = @_;
  3331.         return 1 if $INC{$filename};
  3332.         my($realfilename,$result);
  3333.         ITER: {
  3334.             foreach $prefix (@INC) {
  3335.                 $realfilename = "$prefix/$filename";
  3336.                 if (-f $realfilename) {
  3337.                     $INC{$filename} = $realfilename;
  3338.                     $result = do $realfilename;
  3339.                     last ITER;
  3340.                 }
  3341.             }
  3342.             die "Can't find $filename in \@INC";
  3343.         }
  3344.         delete $INC{$filename} if $@ || !$result;
  3345.         die $@ if $@;
  3346.         die "$filename did not return true value" unless $result;
  3347.         return $result;
  3348.     }</PRE>
  3349. <P>Note that the file will not be included twice under the same specified
  3350. name.  The file must return true as the last statement to indicate
  3351. successful execution of any initialization code, so it's customary to
  3352. end such a file with <CODE>1;</CODE> unless you're sure it'll return true
  3353. otherwise.  But it's better just to put the <CODE>1;</CODE>, in case you add more
  3354. statements.</P>
  3355. <P>If EXPR is a bareword, the require assumes a ``<EM>.pm</EM>'' extension and
  3356. replaces ``<EM>::</EM>'' with ``<EM>/</EM>'' in the filename for you,
  3357. to make it easy to load standard modules.  This form of loading of
  3358. modules does not risk altering your namespace.</P>
  3359. <P>In other words, if you try this:</P>
  3360. <PRE>
  3361.         require Foo::Bar;    # a splendid bareword</PRE>
  3362. <P>The require function will actually look for the ``<EM>Foo/Bar.pm</EM>'' file in the 
  3363. directories specified in the <CODE>@INC</CODE> array.</P>
  3364. <P>But if you try this:</P>
  3365. <PRE>
  3366.         $class = 'Foo::Bar';
  3367.         require $class;      # $class is not a bareword
  3368.     #or
  3369.         require "Foo::Bar";  # not a bareword because of the ""</PRE>
  3370. <P>The require function will look for the ``<EM>Foo::Bar</EM>'' file in the @INC array and 
  3371. will complain about not finding ``<EM>Foo::Bar</EM>'' there.  In this case you can do:</P>
  3372. <PRE>
  3373.         eval "require $class";</PRE>
  3374. <P>For a yet-more-powerful import facility, see <A HREF="#use">use</A> and <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>.</P>
  3375. <P></P>
  3376. <DT><STRONG><A NAME="item_reset">reset EXPR</A></STRONG><BR>
  3377. <DD>
  3378. <DT><STRONG>reset</STRONG><BR>
  3379. <DD>
  3380. Generally used in a <A HREF="#item_continue"><CODE>continue</CODE></A> block at the end of a loop to clear
  3381. variables and reset <CODE>??</CODE> searches so that they work again.  The
  3382. expression is interpreted as a list of single characters (hyphens
  3383. allowed for ranges).  All variables and arrays beginning with one of
  3384. those letters are reset to their pristine state.  If the expression is
  3385. omitted, one-match searches (<CODE>?pattern?</CODE>) are reset to match again.  Resets
  3386. only variables or searches in the current package.  Always returns
  3387. 1.  Examples:
  3388. <PRE>
  3389.     reset 'X';          # reset all X variables
  3390.     reset 'a-z';        # reset lower case variables
  3391.     reset;              # just reset ?one-time? searches</PRE>
  3392. <P>Resetting <CODE>"A-Z"</CODE> is not recommended because you'll wipe out your
  3393. <CODE>@ARGV</CODE> and <CODE>@INC</CODE> arrays and your <CODE>%ENV</CODE> hash.  Resets only package
  3394. variables--lexical variables are unaffected, but they clean themselves
  3395. up on scope exit anyway, so you'll probably want to use them instead.
  3396. See <A HREF="#my">my</A>.</P>
  3397. <P></P>
  3398. <DT><STRONG><A NAME="item_return">return EXPR</A></STRONG><BR>
  3399. <DD>
  3400. <DT><STRONG>return</STRONG><BR>
  3401. <DD>
  3402. Returns from a subroutine, <A HREF="#item_eval"><CODE>eval</CODE></A>, or <A HREF="#item_do"><CODE>do FILE</CODE></A> with the value 
  3403. given in EXPR.  Evaluation of EXPR may be in list, scalar, or void
  3404. context, depending on how the return value will be used, and the context
  3405. may vary from one execution to the next (see <A HREF="#item_wantarray"><CODE>wantarray</CODE></A>).  If no EXPR
  3406. is given, returns an empty list in list context, the undefined value in
  3407. scalar context, and (of course) nothing at all in a void context.
  3408. <P>(Note that in the absence of a explicit <A HREF="#item_return"><CODE>return</CODE></A>, a subroutine, eval,
  3409. or do FILE will automatically return the value of the last expression
  3410. evaluated.)</P>
  3411. <P></P>
  3412. <DT><STRONG><A NAME="item_reverse">reverse LIST</A></STRONG><BR>
  3413. <DD>
  3414. In list context, returns a list value consisting of the elements
  3415. of LIST in the opposite order.  In scalar context, concatenates the
  3416. elements of LIST and returns a string value with all characters
  3417. in the opposite order.
  3418. <PRE>
  3419.     print reverse <>;           # line tac, last line first</PRE>
  3420. <PRE>
  3421.     undef $/;                   # for efficiency of <>
  3422.     print scalar reverse <>;    # character tac, last line tsrif</PRE>
  3423. <P>This operator is also handy for inverting a hash, although there are some
  3424. caveats.  If a value is duplicated in the original hash, only one of those
  3425. can be represented as a key in the inverted hash.  Also, this has to
  3426. unwind one hash and build a whole new one, which may take some time
  3427. on a large hash, such as from a DBM file.</P>
  3428. <PRE>
  3429.     %by_name = reverse %by_address;     # Invert the hash</PRE>
  3430. <P></P>
  3431. <DT><STRONG><A NAME="item_rewinddir">rewinddir DIRHANDLE</A></STRONG><BR>
  3432. <DD>
  3433. Sets the current position to the beginning of the directory for the
  3434. <A HREF="#item_readdir"><CODE>readdir</CODE></A> routine on DIRHANDLE.
  3435. <P></P>
  3436. <DT><STRONG><A NAME="item_rindex">rindex STR,SUBSTR,POSITION</A></STRONG><BR>
  3437. <DD>
  3438. <DT><STRONG>rindex STR,SUBSTR</STRONG><BR>
  3439. <DD>
  3440. Works just like <A HREF="#item_index"><CODE>index()</CODE></A> except that it returns the position of the LAST
  3441. occurrence of SUBSTR in STR.  If POSITION is specified, returns the
  3442. last occurrence at or before that position.
  3443. <P></P>
  3444. <DT><STRONG><A NAME="item_rmdir">rmdir FILENAME</A></STRONG><BR>
  3445. <DD>
  3446. <DT><STRONG>rmdir</STRONG><BR>
  3447. <DD>
  3448. Deletes the directory specified by FILENAME if that directory is empty.  If it
  3449. succeeds it returns true, otherwise it returns false and sets <CODE>$!</CODE> (errno).  If
  3450. FILENAME is omitted, uses <CODE>$_</CODE>.
  3451. <P></P>
  3452. <DT><STRONG><A NAME="item_s/">s///</A></STRONG><BR>
  3453. <DD>
  3454. The substitution operator.  See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  3455. <P></P>
  3456. <DT><STRONG><A NAME="item_scalar">scalar EXPR</A></STRONG><BR>
  3457. <DD>
  3458. Forces EXPR to be interpreted in scalar context and returns the value
  3459. of EXPR.
  3460. <PRE>
  3461.     @counts = ( scalar @a, scalar @b, scalar @c );</PRE>
  3462. <P>There is no equivalent operator to force an expression to
  3463. be interpolated in list context because in practice, this is never
  3464. needed.  If you really wanted to do so, however, you could use
  3465. the construction <CODE>@{[ (some expression) ]}</CODE>, but usually a simple
  3466. <CODE>(some expression)</CODE> suffices.</P>
  3467. <P>Because <A HREF="#item_scalar"><CODE>scalar</CODE></A> is unary operator, if you accidentally use for EXPR a
  3468. parenthesized list, this behaves as a scalar comma expression, evaluating
  3469. all but the last element in void context and returning the final element
  3470. evaluated in scalar context.  This is seldom what you want.</P>
  3471. <P>The following single statement:</P>
  3472. <PRE>
  3473.         print uc(scalar(&foo,$bar)),$baz;</PRE>
  3474. <P>is the moral equivalent of these two:</P>
  3475. <PRE>
  3476.         &foo;
  3477.         print(uc($bar),$baz);</PRE>
  3478. <P>See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A> for more details on unary operators and the comma operator.</P>
  3479. <P></P>
  3480. <DT><STRONG><A NAME="item_seek">seek FILEHANDLE,POSITION,WHENCE</A></STRONG><BR>
  3481. <DD>
  3482. Sets FILEHANDLE's position, just like the <CODE>fseek</CODE> call of <CODE>stdio</CODE>.
  3483. FILEHANDLE may be an expression whose value gives the name of the
  3484. filehandle.  The values for WHENCE are <CODE>0</CODE> to set the new position to
  3485. POSITION, <CODE>1</CODE> to set it to the current position plus POSITION, and
  3486. <CODE>2</CODE> to set it to EOF plus POSITION (typically negative).  For WHENCE
  3487. you may use the constants <CODE>SEEK_SET</CODE>, <CODE>SEEK_CUR</CODE>, and <CODE>SEEK_END</CODE>
  3488. (start of the file, current position, end of the file) from the Fcntl
  3489. module.  Returns <CODE>1</CODE> upon success, <CODE>0</CODE> otherwise.
  3490. <P>If you want to position file for <A HREF="#item_sysread"><CODE>sysread</CODE></A> or <A HREF="#item_syswrite"><CODE>syswrite</CODE></A>, don't use
  3491. <A HREF="#item_seek"><CODE>seek</CODE></A>--buffering makes its effect on the file's system position
  3492. unpredictable and non-portable.  Use <A HREF="#item_sysseek"><CODE>sysseek</CODE></A> instead.</P>
  3493. <P>Due to the rules and rigors of ANSI C, on some systems you have to do a
  3494. seek whenever you switch between reading and writing.  Amongst other
  3495. things, this may have the effect of calling stdio's clearerr(3).
  3496. A WHENCE of <CODE>1</CODE> (<CODE>SEEK_CUR</CODE>) is useful for not moving the file position:</P>
  3497. <PRE>
  3498.     seek(TEST,0,1);</PRE>
  3499. <P>This is also useful for applications emulating <CODE>tail -f</CODE>.  Once you hit
  3500. EOF on your read, and then sleep for a while, you might have to stick in a
  3501. <A HREF="#item_seek"><CODE>seek()</CODE></A> to reset things.  The <A HREF="#item_seek"><CODE>seek</CODE></A> doesn't change the current position,
  3502. but it <EM>does</EM> clear the end-of-file condition on the handle, so that the
  3503. next <CODE><FILE></CODE> makes Perl try again to read something.  We hope.</P>
  3504. <P>If that doesn't work (some stdios are particularly cantankerous), then
  3505. you may need something more like this:</P>
  3506. <PRE>
  3507.     for (;;) {
  3508.         for ($curpos = tell(FILE); $_ = <FILE>;
  3509.              $curpos = tell(FILE)) {
  3510.             # search for some stuff and put it into files
  3511.         }
  3512.         sleep($for_a_while);
  3513.         seek(FILE, $curpos, 0);
  3514.     }</PRE>
  3515. <P></P>
  3516. <DT><STRONG><A NAME="item_seekdir">seekdir DIRHANDLE,POS</A></STRONG><BR>
  3517. <DD>
  3518. Sets the current position for the <A HREF="#item_readdir"><CODE>readdir</CODE></A> routine on DIRHANDLE.  POS
  3519. must be a value returned by <A HREF="#item_telldir"><CODE>telldir</CODE></A>.  Has the same caveats about
  3520. possible directory compaction as the corresponding system library
  3521. routine.
  3522. <P></P>
  3523. <DT><STRONG><A NAME="item_select">select FILEHANDLE</A></STRONG><BR>
  3524. <DD>
  3525. <DT><STRONG>select</STRONG><BR>
  3526. <DD>
  3527. Returns the currently selected filehandle.  Sets the current default
  3528. filehandle for output, if FILEHANDLE is supplied.  This has two
  3529. effects: first, a <A HREF="#item_write"><CODE>write</CODE></A> or a <A HREF="#item_print"><CODE>print</CODE></A> without a filehandle will
  3530. default to this FILEHANDLE.  Second, references to variables related to
  3531. output will refer to this output channel.  For example, if you have to
  3532. set the top of form format for more than one output channel, you might
  3533. do the following:
  3534. <PRE>
  3535.     select(REPORT1);
  3536.     $^ = 'report1_top';
  3537.     select(REPORT2);
  3538.     $^ = 'report2_top';</PRE>
  3539. <P>FILEHANDLE may be an expression whose value gives the name of the
  3540. actual filehandle.  Thus:</P>
  3541. <PRE>
  3542.     $oldfh = select(STDERR); $| = 1; select($oldfh);</PRE>
  3543. <P>Some programmers may prefer to think of filehandles as objects with
  3544. methods, preferring to write the last example as:</P>
  3545. <PRE>
  3546.     use IO::Handle;
  3547.     STDERR->autoflush(1);</PRE>
  3548. <P></P>
  3549. <DT><STRONG>select RBITS,WBITS,EBITS,TIMEOUT</STRONG><BR>
  3550. <DD>
  3551. This calls the <A HREF="#item_select"><CODE>select(2)</CODE></A> system call with the bit masks specified, which
  3552. can be constructed using <A HREF="#item_fileno"><CODE>fileno</CODE></A> and <A HREF="#item_vec"><CODE>vec</CODE></A>, along these lines:
  3553. <PRE>
  3554.     $rin = $win = $ein = '';
  3555.     vec($rin,fileno(STDIN),1) = 1;
  3556.     vec($win,fileno(STDOUT),1) = 1;
  3557.     $ein = $rin | $win;</PRE>
  3558. <P>If you want to select on many filehandles you might wish to write a
  3559. subroutine:</P>
  3560. <PRE>
  3561.     sub fhbits {
  3562.         my(@fhlist) = split(' ',$_[0]);
  3563.         my($bits);
  3564.         for (@fhlist) {
  3565.             vec($bits,fileno($_),1) = 1;
  3566.         }
  3567.         $bits;
  3568.     }
  3569.     $rin = fhbits('STDIN TTY SOCK');</PRE>
  3570. <P>The usual idiom is:</P>
  3571. <PRE>
  3572.     ($nfound,$timeleft) =
  3573.       select($rout=$rin, $wout=$win, $eout=$ein, $timeout);</PRE>
  3574. <P>or to block until something becomes ready just do this</P>
  3575. <PRE>
  3576.     $nfound = select($rout=$rin, $wout=$win, $eout=$ein, undef);</PRE>
  3577. <P>Most systems do not bother to return anything useful in $timeleft, so
  3578. calling <A HREF="#item_select"><CODE>select()</CODE></A> in scalar context just returns $nfound.</P>
  3579. <P>Any of the bit masks can also be undef.  The timeout, if specified, is
  3580. in seconds, which may be fractional.  Note: not all implementations are
  3581. capable of returning the$timeleft.  If not, they always return
  3582. $timeleft equal to the supplied $timeout.</P>
  3583. <P>You can effect a sleep of 250 milliseconds this way:</P>
  3584. <PRE>
  3585.     select(undef, undef, undef, 0.25);</PRE>
  3586. <P><STRONG>WARNING</STRONG>: One should not attempt to mix buffered I/O (like <A HREF="#item_read"><CODE>read</CODE></A>
  3587. or <FH>) with <A HREF="#item_select"><CODE>select</CODE></A>, except as permitted by POSIX, and even
  3588. then only on POSIX systems.  You have to use <A HREF="#item_sysread"><CODE>sysread</CODE></A> instead.</P>
  3589. <P></P>
  3590. <DT><STRONG><A NAME="item_semctl">semctl ID,SEMNUM,CMD,ARG</A></STRONG><BR>
  3591. <DD>
  3592. Calls the System V IPC function <A HREF="#item_semctl"><CODE>semctl</CODE></A>.  You'll probably have to say
  3593. <PRE>
  3594.     use IPC::SysV;</PRE>
  3595. <P>first to get the correct constant definitions.  If CMD is IPC_STAT or
  3596. GETALL, then ARG must be a variable which will hold the returned
  3597. semid_ds structure or semaphore value array.  Returns like <A HREF="#item_ioctl"><CODE>ioctl</CODE></A>:
  3598. the undefined value for error, ``<CODE>0 but true</CODE>'' for zero, or the actual
  3599. return value otherwise.  The ARG must consist of a vector of native
  3600. short integers, which may may be created with <A HREF="#item_pack"><CODE>pack("s!",(0)x$nsem)</CODE></A>.
  3601. See also <CODE>IPC::SysV</CODE> and <CODE>IPC::Semaphore</CODE> documentation.</P>
  3602. <P></P>
  3603. <DT><STRONG><A NAME="item_semget">semget KEY,NSEMS,FLAGS</A></STRONG><BR>
  3604. <DD>
  3605. Calls the System V IPC function semget.  Returns the semaphore id, or
  3606. the undefined value if there is an error.  See also <CODE>IPC::SysV</CODE> and
  3607. <CODE>IPC::SysV::Semaphore</CODE> documentation.
  3608. <P></P>
  3609. <DT><STRONG><A NAME="item_semop">semop KEY,OPSTRING</A></STRONG><BR>
  3610. <DD>
  3611. Calls the System V IPC function semop to perform semaphore operations
  3612. such as signaling and waiting.  OPSTRING must be a packed array of
  3613. semop structures.  Each semop structure can be generated with
  3614. <A HREF="#item_pack"><CODE>pack("sss", $semnum, $semop, $semflag)</CODE></A>.  The number of semaphore
  3615. operations is implied by the length of OPSTRING.  Returns true if
  3616. successful, or false if there is an error.  As an example, the
  3617. following code waits on semaphore $semnum of semaphore id $semid:
  3618. <PRE>
  3619.     $semop = pack("sss", $semnum, -1, 0);
  3620.     die "Semaphore trouble: $!\n" unless semop($semid, $semop);</PRE>
  3621. <P>To signal the semaphore, replace <CODE>-1</CODE> with <CODE>1</CODE>.  See also <CODE>IPC::SysV</CODE>
  3622. and <CODE>IPC::SysV::Semaphore</CODE> documentation.</P>
  3623. <P></P>
  3624. <DT><STRONG><A NAME="item_send">send SOCKET,MSG,FLAGS,TO</A></STRONG><BR>
  3625. <DD>
  3626. <DT><STRONG>send SOCKET,MSG,FLAGS</STRONG><BR>
  3627. <DD>
  3628. Sends a message on a socket.  Takes the same flags as the system call
  3629. of the same name.  On unconnected sockets you must specify a
  3630. destination to send TO, in which case it does a C <CODE>sendto</CODE>.  Returns
  3631. the number of characters sent, or the undefined value if there is an
  3632. error.  The C system call <CODE>sendmsg(2)</CODE> is currently unimplemented.
  3633. See <A HREF="../../lib/Pod/perlipc.html#udp: message passing">UDP: Message Passing in the perlipc manpage</A> for examples.
  3634. <P></P>
  3635. <DT><STRONG><A NAME="item_setpgrp">setpgrp PID,PGRP</A></STRONG><BR>
  3636. <DD>
  3637. Sets the current process group for the specified PID, <CODE>0</CODE> for the current
  3638. process.  Will produce a fatal error if used on a machine that doesn't
  3639. implement POSIX <CODE>setpgid(2)</CODE> or BSD setpgrp(2).  If the arguments are omitted,
  3640. it defaults to <CODE>0,0</CODE>.  Note that the BSD 4.2 version of <A HREF="#item_setpgrp"><CODE>setpgrp</CODE></A> does not
  3641. accept any arguments, so only <A HREF="#item_setpgrp"><CODE>setpgrp(0,0)</CODE></A> is portable.  See also
  3642. <CODE>POSIX::setsid()</CODE>.
  3643. <P></P>
  3644. <DT><STRONG><A NAME="item_setpriority">setpriority WHICH,WHO,PRIORITY</A></STRONG><BR>
  3645. <DD>
  3646. Sets the current priority for a process, a process group, or a user.
  3647. (See <A HREF="#item_setpriority"><CODE>setpriority(2).)</CODE></A>  Will produce a fatal error if used on a machine
  3648. that doesn't implement setpriority(2).
  3649. <P></P>
  3650. <DT><STRONG><A NAME="item_setsockopt">setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL</A></STRONG><BR>
  3651. <DD>
  3652. Sets the socket option requested.  Returns undefined if there is an
  3653. error.  OPTVAL may be specified as <A HREF="#item_undef"><CODE>undef</CODE></A> if you don't want to pass an
  3654. argument.
  3655. <P></P>
  3656. <DT><STRONG><A NAME="item_shift">shift ARRAY</A></STRONG><BR>
  3657. <DD>
  3658. <DT><STRONG>shift</STRONG><BR>
  3659. <DD>
  3660. Shifts the first value of the array off and returns it, shortening the
  3661. array by 1 and moving everything down.  If there are no elements in the
  3662. array, returns the undefined value.  If ARRAY is omitted, shifts the
  3663. <CODE>@_</CODE> array within the lexical scope of subroutines and formats, and the
  3664. <CODE>@ARGV</CODE> array at file scopes or within the lexical scopes established by
  3665. the <CODE>eval ''</CODE>, <CODE>BEGIN {}</CODE>, <CODE>INIT {}</CODE>, <CODE>CHECK {}</CODE>, and <CODE>END {}</CODE>
  3666. constructs.
  3667. <P>See also <A HREF="#item_unshift"><CODE>unshift</CODE></A>, <A HREF="#item_push"><CODE>push</CODE></A>, and <A HREF="#item_pop"><CODE>pop</CODE></A>.  <CODE>Shift()</CODE> and <A HREF="#item_unshift"><CODE>unshift</CODE></A> do the
  3668. same thing to the left end of an array that <A HREF="#item_pop"><CODE>pop</CODE></A> and <A HREF="#item_push"><CODE>push</CODE></A> do to the
  3669. right end.</P>
  3670. <P></P>
  3671. <DT><STRONG><A NAME="item_shmctl">shmctl ID,CMD,ARG</A></STRONG><BR>
  3672. <DD>
  3673. Calls the System V IPC function shmctl.  You'll probably have to say
  3674. <PRE>
  3675.     use IPC::SysV;</PRE>
  3676. <P>first to get the correct constant definitions.  If CMD is <CODE>IPC_STAT</CODE>,
  3677. then ARG must be a variable which will hold the returned <CODE>shmid_ds</CODE>
  3678. structure.  Returns like ioctl: the undefined value for error, ``<CODE>0</CODE> but
  3679. true'' for zero, or the actual return value otherwise.
  3680. See also <CODE>IPC::SysV</CODE> documentation.</P>
  3681. <P></P>
  3682. <DT><STRONG><A NAME="item_shmget">shmget KEY,SIZE,FLAGS</A></STRONG><BR>
  3683. <DD>
  3684. Calls the System V IPC function shmget.  Returns the shared memory
  3685. segment id, or the undefined value if there is an error.
  3686. See also <CODE>IPC::SysV</CODE> documentation.
  3687. <P></P>
  3688. <DT><STRONG><A NAME="item_shmread">shmread ID,VAR,POS,SIZE</A></STRONG><BR>
  3689. <DD>
  3690. <DT><STRONG><A NAME="item_shmwrite">shmwrite ID,STRING,POS,SIZE</A></STRONG><BR>
  3691. <DD>
  3692. Reads or writes the System V shared memory segment ID starting at
  3693. position POS for size SIZE by attaching to it, copying in/out, and
  3694. detaching from it.  When reading, VAR must be a variable that will
  3695. hold the data read.  When writing, if STRING is too long, only SIZE
  3696. bytes are used; if STRING is too short, nulls are written to fill out
  3697. SIZE bytes.  Return true if successful, or false if there is an error.
  3698. <A HREF="#item_shmread"><CODE>shmread()</CODE></A> taints the variable. See also <CODE>IPC::SysV</CODE> documentation and
  3699. the <CODE>IPC::Shareable</CODE> module from CPAN.
  3700. <P></P>
  3701. <DT><STRONG><A NAME="item_shutdown">shutdown SOCKET,HOW</A></STRONG><BR>
  3702. <DD>
  3703. Shuts down a socket connection in the manner indicated by HOW, which
  3704. has the same interpretation as in the system call of the same name.
  3705. <PRE>
  3706.     shutdown(SOCKET, 0);    # I/we have stopped reading data
  3707.     shutdown(SOCKET, 1);    # I/we have stopped writing data
  3708.     shutdown(SOCKET, 2);    # I/we have stopped using this socket</PRE>
  3709. <P>This is useful with sockets when you want to tell the other
  3710. side you're done writing but not done reading, or vice versa.
  3711. It's also a more insistent form of close because it also 
  3712. disables the file descriptor in any forked copies in other
  3713. processes.</P>
  3714. <P></P>
  3715. <DT><STRONG><A NAME="item_sin">sin EXPR</A></STRONG><BR>
  3716. <DD>
  3717. <DT><STRONG>sin</STRONG><BR>
  3718. <DD>
  3719. Returns the sine of EXPR (expressed in radians).  If EXPR is omitted,
  3720. returns sine of <CODE>$_</CODE>.
  3721. <P>For the inverse sine operation, you may use the <CODE>Math::Trig::asin</CODE>
  3722. function, or use this relation:</P>
  3723. <PRE>
  3724.     sub asin { atan2($_[0], sqrt(1 - $_[0] * $_[0])) }</PRE>
  3725. <P></P>
  3726. <DT><STRONG><A NAME="item_sleep">sleep EXPR</A></STRONG><BR>
  3727. <DD>
  3728. <DT><STRONG>sleep</STRONG><BR>
  3729. <DD>
  3730. Causes the script to sleep for EXPR seconds, or forever if no EXPR.
  3731. May be interrupted if the process receives a signal such as <CODE>SIGALRM</CODE>.
  3732. Returns the number of seconds actually slept.  You probably cannot
  3733. mix <A HREF="#item_alarm"><CODE>alarm</CODE></A> and <A HREF="#item_sleep"><CODE>sleep</CODE></A> calls, because <A HREF="#item_sleep"><CODE>sleep</CODE></A> is often implemented
  3734. using <A HREF="#item_alarm"><CODE>alarm</CODE></A>.
  3735. <P>On some older systems, it may sleep up to a full second less than what
  3736. you requested, depending on how it counts seconds.  Most modern systems
  3737. always sleep the full amount.  They may appear to sleep longer than that,
  3738. however, because your process might not be scheduled right away in a
  3739. busy multitasking system.</P>
  3740. <P>For delays of finer granularity than one second, you may use Perl's
  3741. <A HREF="#item_syscall"><CODE>syscall</CODE></A> interface to access <CODE>setitimer(2)</CODE> if your system supports
  3742. it, or else see <A HREF="#select">select</A> above.  The Time::HiRes module from CPAN
  3743. may also help.</P>
  3744. <P>See also the POSIX module's <CODE>sigpause</CODE> function.</P>
  3745. <P></P>
  3746. <DT><STRONG><A NAME="item_socket">socket SOCKET,DOMAIN,TYPE,PROTOCOL</A></STRONG><BR>
  3747. <DD>
  3748. Opens a socket of the specified kind and attaches it to filehandle
  3749. SOCKET.  DOMAIN, TYPE, and PROTOCOL are specified the same as for
  3750. the system call of the same name.  You should <CODE>use Socket</CODE> first
  3751. to get the proper definitions imported.  See the examples in
  3752. <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A>.
  3753. <P>On systems that support a close-on-exec flag on files, the flag will
  3754. be set for the newly opened file descriptor, as determined by the
  3755. value of $^F.  See <A HREF="../../lib/Pod/perlvar.html#$^f">$^F in the perlvar manpage</A>.</P>
  3756. <P></P>
  3757. <DT><STRONG><A NAME="item_socketpair">socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL</A></STRONG><BR>
  3758. <DD>
  3759. Creates an unnamed pair of sockets in the specified domain, of the
  3760. specified type.  DOMAIN, TYPE, and PROTOCOL are specified the same as
  3761. for the system call of the same name.  If unimplemented, yields a fatal
  3762. error.  Returns true if successful.
  3763. <P>On systems that support a close-on-exec flag on files, the flag will
  3764. be set for the newly opened file descriptors, as determined by the value
  3765. of $^F.  See <A HREF="../../lib/Pod/perlvar.html#$^f">$^F in the perlvar manpage</A>.</P>
  3766. <P>Some systems defined <A HREF="#item_pipe"><CODE>pipe</CODE></A> in terms of <A HREF="#item_socketpair"><CODE>socketpair</CODE></A>, in which a call
  3767. to <A HREF="#item_pipe"><CODE>pipe(Rdr, Wtr)</CODE></A> is essentially:</P>
  3768. <PRE>
  3769.     use Socket;
  3770.     socketpair(Rdr, Wtr, AF_UNIX, SOCK_STREAM, PF_UNSPEC);
  3771.     shutdown(Rdr, 1);        # no more writing for reader
  3772.     shutdown(Wtr, 0);        # no more reading for writer</PRE>
  3773. <P>See <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A> for an example of socketpair use.</P>
  3774. <P></P>
  3775. <DT><STRONG><A NAME="item_sort">sort SUBNAME LIST</A></STRONG><BR>
  3776. <DD>
  3777. <DT><STRONG>sort BLOCK LIST</STRONG><BR>
  3778. <DD>
  3779. <DT><STRONG>sort LIST</STRONG><BR>
  3780. <DD>
  3781. Sorts the LIST and returns the sorted list value.  If SUBNAME or BLOCK
  3782. is omitted, <A HREF="#item_sort"><CODE>sort</CODE></A>s in standard string comparison order.  If SUBNAME is
  3783. specified, it gives the name of a subroutine that returns an integer
  3784. less than, equal to, or greater than <CODE>0</CODE>, depending on how the elements
  3785. of the list are to be ordered.  (The <CODE><=></CODE> and <CODE>cmp</CODE>
  3786. operators are extremely useful in such routines.)  SUBNAME may be a
  3787. scalar variable name (unsubscripted), in which case the value provides
  3788. the name of (or a reference to) the actual subroutine to use.  In place
  3789. of a SUBNAME, you can provide a BLOCK as an anonymous, in-line sort
  3790. subroutine.
  3791. <P>If the subroutine's prototype is <CODE>($$)</CODE>, the elements to be compared
  3792. are passed by reference in <CODE>@_</CODE>, as for a normal subroutine.  This is
  3793. slower than unprototyped subroutines, where the elements to be
  3794. compared are passed into the subroutine
  3795. as the package global variables $a and $b (see example below).  Note that
  3796. in the latter case, it is usually counter-productive to declare $a and
  3797. $b as lexicals.</P>
  3798. <P>In either case, the subroutine may not be recursive.  The values to be
  3799. compared are always passed by reference, so don't modify them.</P>
  3800. <P>You also cannot exit out of the sort block or subroutine using any of the
  3801. loop control operators described in <A HREF="../../lib/Pod/perlsyn.html">the perlsyn manpage</A> or with <A HREF="#item_goto"><CODE>goto</CODE></A>.</P>
  3802. <P>When <CODE>use locale</CODE> is in effect, <A HREF="#item_sort"><CODE>sort LIST</CODE></A> sorts LIST according to the
  3803. current collation locale.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.</P>
  3804. <P>Examples:</P>
  3805. <PRE>
  3806.     # sort lexically
  3807.     @articles = sort @files;</PRE>
  3808. <PRE>
  3809.     # same thing, but with explicit sort routine
  3810.     @articles = sort {$a cmp $b} @files;</PRE>
  3811. <PRE>
  3812.     # now case-insensitively
  3813.     @articles = sort {uc($a) cmp uc($b)} @files;</PRE>
  3814. <PRE>
  3815.     # same thing in reversed order
  3816.     @articles = sort {$b cmp $a} @files;</PRE>
  3817. <PRE>
  3818.     # sort numerically ascending
  3819.     @articles = sort {$a <=> $b} @files;</PRE>
  3820. <PRE>
  3821.     # sort numerically descending
  3822.     @articles = sort {$b <=> $a} @files;</PRE>
  3823. <PRE>
  3824.     # this sorts the %age hash by value instead of key
  3825.     # using an in-line function
  3826.     @eldest = sort { $age{$b} <=> $age{$a} } keys %age;</PRE>
  3827. <PRE>
  3828.     # sort using explicit subroutine name
  3829.     sub byage {
  3830.         $age{$a} <=> $age{$b};  # presuming numeric
  3831.     }
  3832.     @sortedclass = sort byage @class;</PRE>
  3833. <PRE>
  3834.     sub backwards { $b cmp $a }
  3835.     @harry  = qw(dog cat x Cain Abel);
  3836.     @george = qw(gone chased yz Punished Axed);
  3837.     print sort @harry;
  3838.             # prints AbelCaincatdogx
  3839.     print sort backwards @harry;
  3840.             # prints xdogcatCainAbel
  3841.     print sort @george, 'to', @harry;
  3842.             # prints AbelAxedCainPunishedcatchaseddoggonetoxyz</PRE>
  3843. <PRE>
  3844.     # inefficiently sort by descending numeric compare using
  3845.     # the first integer after the first = sign, or the
  3846.     # whole record case-insensitively otherwise</PRE>
  3847. <PRE>
  3848.     @new = sort {
  3849.         ($b =~ /=(\d+)/)[0] <=> ($a =~ /=(\d+)/)[0]
  3850.                             ||
  3851.                     uc($a)  cmp  uc($b)
  3852.     } @old;</PRE>
  3853. <PRE>
  3854.     # same thing, but much more efficiently;
  3855.     # we'll build auxiliary indices instead
  3856.     # for speed
  3857.     @nums = @caps = ();
  3858.     for (@old) {
  3859.         push @nums, /=(\d+)/;
  3860.         push @caps, uc($_);
  3861.     }</PRE>
  3862. <PRE>
  3863.     @new = @old[ sort {
  3864.                         $nums[$b] <=> $nums[$a]
  3865.                                  ||
  3866.                         $caps[$a] cmp $caps[$b]
  3867.                        } 0..$#old
  3868.                ];</PRE>
  3869. <PRE>
  3870.     # same thing, but without any temps
  3871.     @new = map { $_->[0] }
  3872.            sort { $b->[1] <=> $a->[1]
  3873.                            ||
  3874.                   $a->[2] cmp $b->[2]
  3875.            } map { [$_, /=(\d+)/, uc($_)] } @old;</PRE>
  3876. <PRE>
  3877.     # using a prototype allows you to use any comparison subroutine
  3878.     # as a sort subroutine (including other package's subroutines)
  3879.     package other;
  3880.     sub backwards ($$) { $_[1] cmp $_[0]; }     # $a and $b are not set here</PRE>
  3881. <PRE>
  3882.     package main;
  3883.     @new = sort other::backwards @old;</PRE>
  3884. <P>If you're using strict, you <EM>must not</EM> declare $a
  3885. and $b as lexicals.  They are package globals.  That means
  3886. if you're in the <CODE>main</CODE> package, it's</P>
  3887. <PRE>
  3888.     @articles = sort {$main::b <=> $main::a} @files;</PRE>
  3889. <P>or just</P>
  3890. <PRE>
  3891.     @articles = sort {$::b <=> $::a} @files;</PRE>
  3892. <P>but if you're in the <CODE>FooPack</CODE> package, it's</P>
  3893. <PRE>
  3894.     @articles = sort {$FooPack::b <=> $FooPack::a} @files;</PRE>
  3895. <P>The comparison function is required to behave.  If it returns
  3896. inconsistent results (sometimes saying <CODE>$x[1]</CODE> is less than <CODE>$x[2]</CODE> and
  3897. sometimes saying the opposite, for example) the results are not
  3898. well-defined.</P>
  3899. <P></P>
  3900. <DT><STRONG><A NAME="item_splice">splice ARRAY,OFFSET,LENGTH,LIST</A></STRONG><BR>
  3901. <DD>
  3902. <DT><STRONG>splice ARRAY,OFFSET,LENGTH</STRONG><BR>
  3903. <DD>
  3904. <DT><STRONG>splice ARRAY,OFFSET</STRONG><BR>
  3905. <DD>
  3906. <DT><STRONG>splice ARRAY</STRONG><BR>
  3907. <DD>
  3908. Removes the elements designated by OFFSET and LENGTH from an array, and
  3909. replaces them with the elements of LIST, if any.  In list context,
  3910. returns the elements removed from the array.  In scalar context,
  3911. returns the last element removed, or <A HREF="#item_undef"><CODE>undef</CODE></A> if no elements are
  3912. removed.  The array grows or shrinks as necessary.
  3913. If OFFSET is negative then it starts that far from the end of the array.
  3914. If LENGTH is omitted, removes everything from OFFSET onward.
  3915. If LENGTH is negative, leaves that many elements off the end of the array.
  3916. If both OFFSET and LENGTH are omitted, removes everything.
  3917. <P>The following equivalences hold (assuming <CODE>$[ == 0</CODE>):</P>
  3918. <PRE>
  3919.     push(@a,$x,$y)      splice(@a,@a,0,$x,$y)
  3920.     pop(@a)             splice(@a,-1)
  3921.     shift(@a)           splice(@a,0,1)
  3922.     unshift(@a,$x,$y)   splice(@a,0,0,$x,$y)
  3923.     $a[$x] = $y         splice(@a,$x,1,$y)</PRE>
  3924. <P>Example, assuming array lengths are passed before arrays:</P>
  3925. <PRE>
  3926.     sub aeq {   # compare two list values
  3927.         my(@a) = splice(@_,0,shift);
  3928.         my(@b) = splice(@_,0,shift);
  3929.         return 0 unless @a == @b;       # same len?
  3930.         while (@a) {
  3931.             return 0 if pop(@a) ne pop(@b);
  3932.         }
  3933.         return 1;
  3934.     }
  3935.     if (&aeq($len,@foo[1..$len],0+@bar,@bar)) { ... }</PRE>
  3936. <P></P>
  3937. <DT><STRONG><A NAME="item_split">split /PATTERN/,EXPR,LIMIT</A></STRONG><BR>
  3938. <DD>
  3939. <DT><STRONG>split /PATTERN/,EXPR</STRONG><BR>
  3940. <DD>
  3941. <DT><STRONG>split /PATTERN/</STRONG><BR>
  3942. <DD>
  3943. <DT><STRONG>split</STRONG><BR>
  3944. <DD>
  3945. Splits a string into a list of strings and returns that list.  By default,
  3946. empty leading fields are preserved, and empty trailing ones are deleted.
  3947. <P>If not in list context, returns the number of fields found and splits into
  3948. the <CODE>@_</CODE> array.  (In list context, you can force the split into <CODE>@_</CODE> by
  3949. using <CODE>??</CODE> as the pattern delimiters, but it still returns the list
  3950. value.)  The use of implicit split to <CODE>@_</CODE> is deprecated, however, because
  3951. it clobbers your subroutine arguments.</P>
  3952. <P>If EXPR is omitted, splits the <CODE>$_</CODE> string.  If PATTERN is also omitted,
  3953. splits on whitespace (after skipping any leading whitespace).  Anything
  3954. matching PATTERN is taken to be a delimiter separating the fields.  (Note
  3955. that the delimiter may be longer than one character.)</P>
  3956. <P>If LIMIT is specified and positive, splits into no more than that
  3957. many fields (though it may split into fewer).  If LIMIT is unspecified
  3958. or zero, trailing null fields are stripped (which potential users
  3959. of <A HREF="#item_pop"><CODE>pop</CODE></A> would do well to remember).  If LIMIT is negative, it is
  3960. treated as if an arbitrarily large LIMIT had been specified.</P>
  3961. <P>A pattern matching the null string (not to be confused with
  3962. a null pattern <CODE>//</CODE>, which is just one member of the set of patterns
  3963. matching a null string) will split the value of EXPR into separate
  3964. characters at each point it matches that way.  For example:</P>
  3965. <PRE>
  3966.     print join(':', split(/ */, 'hi there'));</PRE>
  3967. <P>produces the output 'h:i:t:h:e:r:e'.</P>
  3968. <P>The LIMIT parameter can be used to split a line partially</P>
  3969. <PRE>
  3970.     ($login, $passwd, $remainder) = split(/:/, $_, 3);</PRE>
  3971. <P>When assigning to a list, if LIMIT is omitted, Perl supplies a LIMIT
  3972. one larger than the number of variables in the list, to avoid
  3973. unnecessary work.  For the list above LIMIT would have been 4 by
  3974. default.  In time critical applications it behooves you not to split
  3975. into more fields than you really need.</P>
  3976. <P>If the PATTERN contains parentheses, additional list elements are
  3977. created from each matching substring in the delimiter.</P>
  3978. <PRE>
  3979.     split(/([,-])/, "1-10,20", 3);</PRE>
  3980. <P>produces the list value</P>
  3981. <PRE>
  3982.     (1, '-', 10, ',', 20)</PRE>
  3983. <P>If you had the entire header of a normal Unix email message in $header,
  3984. you could split it up into fields and their values this way:</P>
  3985. <PRE>
  3986.     $header =~ s/\n\s+/ /g;  # fix continuation lines
  3987.     %hdrs   =  (UNIX_FROM => split /^(\S*?):\s*/m, $header);</PRE>
  3988. <P>The pattern <CODE>/PATTERN/</CODE> may be replaced with an expression to specify
  3989. patterns that vary at runtime.  (To do runtime compilation only once,
  3990. use <CODE>/$variable/o</CODE>.)</P>
  3991. <P>As a special case, specifying a PATTERN of space (<CODE>' '</CODE>) will split on
  3992. white space just as <A HREF="#item_split"><CODE>split</CODE></A> with no arguments does.  Thus, <A HREF="#item_split"><CODE>split(' ')</CODE></A> can
  3993. be used to emulate <STRONG>awk</STRONG>'s default behavior, whereas <A HREF="#item_split"><CODE>split(/ /)</CODE></A>
  3994. will give you as many null initial fields as there are leading spaces.
  3995. A <A HREF="#item_split"><CODE>split</CODE></A> on <CODE>/\s+/</CODE> is like a <A HREF="#item_split"><CODE>split(' ')</CODE></A> except that any leading
  3996. whitespace produces a null first field.  A <A HREF="#item_split"><CODE>split</CODE></A> with no arguments
  3997. really does a <A HREF="#item_split"><CODE>split(' ', $_)</CODE></A> internally.</P>
  3998. <P>Example:</P>
  3999. <PRE>
  4000.     open(PASSWD, '/etc/passwd');
  4001.     while (<PASSWD>) {
  4002.         ($login, $passwd, $uid, $gid,
  4003.          $gcos, $home, $shell) = split(/:/);
  4004.         #...
  4005.     }</PRE>
  4006. <P>(Note that $shell above will still have a newline on it.  See <A HREF="#chop">chop</A>,
  4007. <A HREF="#chomp">chomp</A>, and <A HREF="#join">join</A>.)</P>
  4008. <P></P>
  4009. <DT><STRONG><A NAME="item_sprintf">sprintf FORMAT, LIST</A></STRONG><BR>
  4010. <DD>
  4011. Returns a string formatted by the usual <A HREF="#item_printf"><CODE>printf</CODE></A> conventions of the
  4012. C library function <A HREF="#item_sprintf"><CODE>sprintf</CODE></A>.  See <A HREF="#item_sprintf">sprintf(3)</A> or <A HREF="#item_printf">printf(3)</A>
  4013. on your system for an explanation of the general principles.
  4014. <P>Perl does its own <A HREF="#item_sprintf"><CODE>sprintf</CODE></A> formatting--it emulates the C
  4015. function <A HREF="#item_sprintf"><CODE>sprintf</CODE></A>, but it doesn't use it (except for floating-point
  4016. numbers, and even then only the standard modifiers are allowed).  As a
  4017. result, any non-standard extensions in your local <A HREF="#item_sprintf"><CODE>sprintf</CODE></A> are not
  4018. available from Perl.</P>
  4019. <P>Perl's <A HREF="#item_sprintf"><CODE>sprintf</CODE></A> permits the following universally-known conversions:</P>
  4020. <PRE>
  4021.    %%   a percent sign
  4022.    %c   a character with the given number
  4023.    %s   a string
  4024.    %d   a signed integer, in decimal
  4025.    %u   an unsigned integer, in decimal
  4026.    %o   an unsigned integer, in octal
  4027.    %x   an unsigned integer, in hexadecimal
  4028.    %e   a floating-point number, in scientific notation
  4029.    %f   a floating-point number, in fixed decimal notation
  4030.    %g   a floating-point number, in %e or %f notation</PRE>
  4031. <P>In addition, Perl permits the following widely-supported conversions:</P>
  4032. <PRE>
  4033.    %X   like %x, but using upper-case letters
  4034.    %E   like %e, but using an upper-case "E"
  4035.    %G   like %g, but with an upper-case "E" (if applicable)
  4036.    %b   an unsigned integer, in binary
  4037.    %p   a pointer (outputs the Perl value's address in hexadecimal)
  4038.    %n   special: *stores* the number of characters output so far
  4039.         into the next variable in the parameter list</PRE>
  4040. <P>Finally, for backward (and we do mean ``backward'') compatibility, Perl
  4041. permits these unnecessary but widely-supported conversions:</P>
  4042. <PRE>
  4043.    %i   a synonym for %d
  4044.    %D   a synonym for %ld
  4045.    %U   a synonym for %lu
  4046.    %O   a synonym for %lo
  4047.    %F   a synonym for %f</PRE>
  4048. <P>Perl permits the following universally-known flags between the <CODE>%</CODE>
  4049. and the conversion letter:</P>
  4050. <PRE>
  4051.    space   prefix positive number with a space
  4052.    +       prefix positive number with a plus sign
  4053.    -       left-justify within the field
  4054.    0       use zeros, not spaces, to right-justify
  4055.    #       prefix non-zero octal with "0", non-zero hex with "0x"
  4056.    number  minimum field width
  4057.    .number "precision": digits after decimal point for
  4058.            floating-point, max length for string, minimum length
  4059.            for integer
  4060.    l       interpret integer as C type "long" or "unsigned long"
  4061.    h       interpret integer as C type "short" or "unsigned short"
  4062.            If no flags, interpret integer as C type "int" or "unsigned"</PRE>
  4063. <P>There are also two Perl-specific flags:</P>
  4064. <PRE>
  4065.    V       interpret integer as Perl's standard integer type
  4066.    v       interpret string as a vector of integers, output as
  4067.            numbers separated either by dots, or by an arbitrary
  4068.            string received from the argument list when the flag
  4069.            is preceded by C<*></PRE>
  4070. <P>Where a number would appear in the flags, an asterisk (<CODE>*</CODE>) may be
  4071. used instead, in which case Perl uses the next item in the parameter
  4072. list as the given number (that is, as the field width or precision).
  4073. If a field width obtained through <CODE>*</CODE> is negative, it has the same
  4074. effect as the <CODE>-</CODE> flag: left-justification.</P>
  4075. <P>The <CODE>v</CODE> flag is useful for displaying ordinal values of characters
  4076. in arbitrary strings:</P>
  4077. <PRE>
  4078.     printf "version is v%vd\n", $^V;            # Perl's version
  4079.     printf "address is %*vX\n", ":", $addr;     # IPv6 address
  4080.     printf "bits are %*vb\n", " ", $bits;       # random bitstring</PRE>
  4081. <P>If <CODE>use locale</CODE> is in effect, the character used for the decimal
  4082. point in formatted real numbers is affected by the LC_NUMERIC locale.
  4083. See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.</P>
  4084. <P>If Perl understands ``quads'' (64-bit integers) (this requires
  4085. either that the platform natively support quads or that Perl
  4086. be specifically compiled to support quads), the characters</P>
  4087. <PRE>
  4088.         d u o x X b i D U O</PRE>
  4089. <P>print quads, and they may optionally be preceded by</P>
  4090. <PRE>
  4091.         ll L q</PRE>
  4092. <P>For example</P>
  4093. <PRE>
  4094.         %lld %16LX %qo</PRE>
  4095. <P>You can find out whether your Perl supports quads via <A HREF="../../lib/Config.html">the Config manpage</A>:</P>
  4096. <PRE>
  4097.         use Config;
  4098.         ($Config{use64bitint} eq 'define' || $Config{longsize} == 8) &&
  4099.                 print "quads\n";</PRE>
  4100. <P>If Perl understands ``long doubles'' (this requires that the platform
  4101. support long doubles), the flags</P>
  4102. <PRE>
  4103.         e f g E F G</PRE>
  4104. <P>may optionally be preceded by</P>
  4105. <PRE>
  4106.         ll L</PRE>
  4107. <P>For example</P>
  4108. <PRE>
  4109.         %llf %Lg</PRE>
  4110. <P>You can find out whether your Perl supports long doubles via <A HREF="../../lib/Config.html">the Config manpage</A>:</P>
  4111. <PRE>
  4112.         use Config;
  4113.         $Config{d_longdbl} eq 'define' && print "long doubles\n";</PRE>
  4114. <P></P>
  4115. <DT><STRONG><A NAME="item_sqrt">sqrt EXPR</A></STRONG><BR>
  4116. <DD>
  4117. <DT><STRONG>sqrt</STRONG><BR>
  4118. <DD>
  4119. Return the square root of EXPR.  If EXPR is omitted, returns square
  4120. root of <CODE>$_</CODE>.  Only works on non-negative operands, unless you've
  4121. loaded the standard Math::Complex module.
  4122. <PRE>
  4123.     use Math::Complex;
  4124.     print sqrt(-2);    # prints 1.4142135623731i</PRE>
  4125. <P></P>
  4126. <DT><STRONG><A NAME="item_srand">srand EXPR</A></STRONG><BR>
  4127. <DD>
  4128. <DT><STRONG>srand</STRONG><BR>
  4129. <DD>
  4130. Sets the random number seed for the <A HREF="#item_rand"><CODE>rand</CODE></A> operator.  If EXPR is
  4131. omitted, uses a semi-random value supplied by the kernel (if it supports
  4132. the <EM>/dev/urandom</EM> device) or based on the current time and process
  4133. ID, among other things.  In versions of Perl prior to 5.004 the default
  4134. seed was just the current <A HREF="#item_time"><CODE>time</CODE></A>.  This isn't a particularly good seed,
  4135. so many old programs supply their own seed value (often <CODE>time ^ $$</CODE> or
  4136. <CODE>time ^ ($$ + ($$ << 15))</CODE>), but that isn't necessary any more.
  4137. <P>In fact, it's usually not necessary to call <A HREF="#item_srand"><CODE>srand</CODE></A> at all, because if
  4138. it is not called explicitly, it is called implicitly at the first use of
  4139. the <A HREF="#item_rand"><CODE>rand</CODE></A> operator.  However, this was not the case in version of Perl
  4140. before 5.004, so if your script will run under older Perl versions, it
  4141. should call <A HREF="#item_srand"><CODE>srand</CODE></A>.</P>
  4142. <P>Note that you need something much more random than the default seed for
  4143. cryptographic purposes.  Checksumming the compressed output of one or more
  4144. rapidly changing operating system status programs is the usual method.  For
  4145. example:</P>
  4146. <PRE>
  4147.     srand (time ^ $$ ^ unpack "%L*", `ps axww | gzip`);</PRE>
  4148. <P>If you're particularly concerned with this, see the <CODE>Math::TrulyRandom</CODE>
  4149. module in CPAN.</P>
  4150. <P>Do <EM>not</EM> call <A HREF="#item_srand"><CODE>srand</CODE></A> multiple times in your program unless you know
  4151. exactly what you're doing and why you're doing it.  The point of the
  4152. function is to ``seed'' the <A HREF="#item_rand"><CODE>rand</CODE></A> function so that <A HREF="#item_rand"><CODE>rand</CODE></A> can produce
  4153. a different sequence each time you run your program.  Just do it once at the
  4154. top of your program, or you <EM>won't</EM> get random numbers out of <A HREF="#item_rand"><CODE>rand</CODE></A>!</P>
  4155. <P>Frequently called programs (like CGI scripts) that simply use</P>
  4156. <PRE>
  4157.     time ^ $$</PRE>
  4158. <P>for a seed can fall prey to the mathematical property that</P>
  4159. <PRE>
  4160.     a^b == (a+1)^(b+1)</PRE>
  4161. <P>one-third of the time.  So don't do that.</P>
  4162. <P></P>
  4163. <DT><STRONG><A NAME="item_stat">stat FILEHANDLE</A></STRONG><BR>
  4164. <DD>
  4165. <DT><STRONG>stat EXPR</STRONG><BR>
  4166. <DD>
  4167. <DT><STRONG>stat</STRONG><BR>
  4168. <DD>
  4169. Returns a 13-element list giving the status info for a file, either
  4170. the file opened via FILEHANDLE, or named by EXPR.  If EXPR is omitted,
  4171. it stats <CODE>$_</CODE>.  Returns a null list if the stat fails.  Typically used
  4172. as follows:
  4173. <PRE>
  4174.     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  4175.        $atime,$mtime,$ctime,$blksize,$blocks)
  4176.            = stat($filename);</PRE>
  4177. <P>Not all fields are supported on all filesystem types.  Here are the
  4178. meaning of the fields:</P>
  4179. <PRE>
  4180.   0 dev      device number of filesystem
  4181.   1 ino      inode number
  4182.   2 mode     file mode  (type and permissions)
  4183.   3 nlink    number of (hard) links to the file
  4184.   4 uid      numeric user ID of file's owner
  4185.   5 gid      numeric group ID of file's owner
  4186.   6 rdev     the device identifier (special files only)
  4187.   7 size     total size of file, in bytes
  4188.   8 atime    last access time in seconds since the epoch
  4189.   9 mtime    last modify time in seconds since the epoch
  4190.  10 ctime    inode change time (NOT creation time!) in seconds since the epoch
  4191.  11 blksize  preferred block size for file system I/O
  4192.  12 blocks   actual number of blocks allocated</PRE>
  4193. <P>(The epoch was at 00:00 January 1, 1970 GMT.)</P>
  4194. <P>If stat is passed the special filehandle consisting of an underline, no
  4195. stat is done, but the current contents of the stat structure from the
  4196. last stat or filetest are returned.  Example:</P>
  4197. <PRE>
  4198.     if (-x $file && (($d) = stat(_)) && $d < 0) {
  4199.         print "$file is executable NFS file\n";
  4200.     }</PRE>
  4201. <P>(This works on machines only for which the device number is negative
  4202. under NFS.)</P>
  4203. <P>Because the mode contains both the file type and its permissions, you
  4204. should mask off the file type portion and (s)printf using a <CODE>"%o"</CODE> 
  4205. if you want to see the real permissions.</P>
  4206. <PRE>
  4207.     $mode = (stat($filename))[2];
  4208.     printf "Permissions are %04o\n", $mode & 07777;</PRE>
  4209. <P>In scalar context, <A HREF="#item_stat"><CODE>stat</CODE></A> returns a boolean value indicating success
  4210. or failure, and, if successful, sets the information associated with
  4211. the special filehandle <CODE>_</CODE>.</P>
  4212. <P>The File::stat module provides a convenient, by-name access mechanism:</P>
  4213. <PRE>
  4214.     use File::stat;
  4215.     $sb = stat($filename);
  4216.     printf "File is %s, size is %s, perm %04o, mtime %s\n", 
  4217.         $filename, $sb->size, $sb->mode & 07777,
  4218.         scalar localtime $sb->mtime;</PRE>
  4219. <P>You can import symbolic mode constants (<CODE>S_IF*</CODE>) and functions
  4220. (<CODE>S_IS*</CODE>) from the Fcntl module:</P>
  4221. <PRE>
  4222.     use Fcntl ':mode';</PRE>
  4223. <PRE>
  4224.     $mode = (stat($filename))[2];</PRE>
  4225. <PRE>
  4226.     $user_rwx      = ($mode & S_IRWXU) >> 6;
  4227.     $group_read    = ($mode & S_IRGRP) >> 3;
  4228.     $other_execute =  $mode & S_IXOTH;</PRE>
  4229. <PRE>
  4230.     printf "Permissions are %04o\n", S_ISMODE($mode), "\n";</PRE>
  4231. <PRE>
  4232.     $is_setuid     =  $mode & S_ISUID;
  4233.     $is_setgid     =  S_ISDIR($mode);</PRE>
  4234. <P>You could write the last two using the <CODE>-u</CODE> and <CODE>-d</CODE> operators.
  4235. The commonly available S_IF* constants are</P>
  4236. <PRE>
  4237.     # Permissions: read, write, execute, for user, group, others.</PRE>
  4238. <PRE>
  4239.     S_IRWXU S_IRUSR S_IWUSR S_IXUSR
  4240.     S_IRWXG S_IRGRP S_IWGRP S_IXGRP
  4241.     S_IRWXO S_IROTH S_IWOTH S_IXOTH</PRE>
  4242. <PRE>
  4243.     # Setuid/Setgid/Stickiness.</PRE>
  4244. <PRE>
  4245.     S_ISUID S_ISGID S_ISVTX S_ISTXT</PRE>
  4246. <PRE>
  4247.     # File types.  Not necessarily all are available on your system.</PRE>
  4248. <PRE>
  4249.     S_IFREG S_IFDIR S_IFLNK S_IFBLK S_ISCHR S_IFIFO S_IFSOCK S_IFWHT S_ENFMT</PRE>
  4250. <PRE>
  4251.     # The following are compatibility aliases for S_IRUSR, S_IWUSR, S_IXUSR.</PRE>
  4252. <PRE>
  4253.     S_IREAD S_IWRITE S_IEXEC</PRE>
  4254. <P>and the S_IF* functions are</P>
  4255. <PRE>
  4256.     S_IFMODE($mode)     the part of $mode containg the permission bits
  4257.                         and the setuid/setgid/sticky bits</PRE>
  4258. <PRE>
  4259.     S_IFMT($mode)       the part of $mode containing the file type
  4260.                         which can be bit-anded with e.g. S_IFREG 
  4261.                         or with the following functions</PRE>
  4262. <PRE>
  4263.     # The operators -f, -d, -l, -b, -c, -p, and -s.</PRE>
  4264. <PRE>
  4265.     S_ISREG($mode) S_ISDIR($mode) S_ISLNK($mode)
  4266.     S_ISBLK($mode) S_ISCHR($mode) S_ISFIFO($mode) S_ISSOCK($mode)</PRE>
  4267. <PRE>
  4268.     # No direct -X operator counterpart, but for the first one
  4269.     # the -g operator is often equivalent.  The ENFMT stands for
  4270.     # record flocking enforcement, a platform-dependent feature.</PRE>
  4271. <PRE>
  4272.     S_ISENFMT($mode) S_ISWHT($mode)</PRE>
  4273. <P>See your native <A HREF="#item_chmod"><CODE>chmod(2)</CODE></A> and <A HREF="#item_stat"><CODE>stat(2)</CODE></A> documentation for more details
  4274. about the S_* constants.</P>
  4275. <P></P>
  4276. <DT><STRONG><A NAME="item_study">study SCALAR</A></STRONG><BR>
  4277. <DD>
  4278. <DT><STRONG>study</STRONG><BR>
  4279. <DD>
  4280. Takes extra time to study SCALAR (<CODE>$_</CODE> if unspecified) in anticipation of
  4281. doing many pattern matches on the string before it is next modified.
  4282. This may or may not save time, depending on the nature and number of
  4283. patterns you are searching on, and on the distribution of character
  4284. frequencies in the string to be searched--you probably want to compare
  4285. run times with and without it to see which runs faster.  Those loops
  4286. which scan for many short constant strings (including the constant
  4287. parts of more complex patterns) will benefit most.  You may have only
  4288. one <A HREF="#item_study"><CODE>study</CODE></A> active at a time--if you study a different scalar the first
  4289. is ``unstudied''.  (The way <A HREF="#item_study"><CODE>study</CODE></A> works is this: a linked list of every
  4290. character in the string to be searched is made, so we know, for
  4291. example, where all the <CODE>'k'</CODE> characters are.  From each search string,
  4292. the rarest character is selected, based on some static frequency tables
  4293. constructed from some C programs and English text.  Only those places
  4294. that contain this ``rarest'' character are examined.)
  4295. <P>For example, here is a loop that inserts index producing entries
  4296. before any line containing a certain pattern:</P>
  4297. <PRE>
  4298.     while (<>) {
  4299.         study;
  4300.         print ".IX foo\n"       if /\bfoo\b/;
  4301.         print ".IX bar\n"       if /\bbar\b/;
  4302.         print ".IX blurfl\n"    if /\bblurfl\b/;
  4303.         # ...
  4304.         print;
  4305.     }</PRE>
  4306. <P>In searching for <CODE>/\bfoo\b/</CODE>, only those locations in <CODE>$_</CODE> that contain <CODE>f</CODE>
  4307. will be looked at, because <CODE>f</CODE> is rarer than <CODE>o</CODE>.  In general, this is
  4308. a big win except in pathological cases.  The only question is whether
  4309. it saves you more time than it took to build the linked list in the
  4310. first place.</P>
  4311. <P>Note that if you have to look for strings that you don't know till
  4312. runtime, you can build an entire loop as a string and <A HREF="#item_eval"><CODE>eval</CODE></A> that to
  4313. avoid recompiling all your patterns all the time.  Together with
  4314. undefining <CODE>$/</CODE> to input entire files as one record, this can be very
  4315. fast, often faster than specialized programs like fgrep(1).  The following
  4316. scans a list of files (<CODE>@files</CODE>) for a list of words (<CODE>@words</CODE>), and prints
  4317. out the names of those files that contain a match:</P>
  4318. <PRE>
  4319.     $search = 'while (<>) { study;';
  4320.     foreach $word (@words) {
  4321.         $search .= "++\$seen{\$ARGV} if /\\b$word\\b/;\n";
  4322.     }
  4323.     $search .= "}";
  4324.     @ARGV = @files;
  4325.     undef $/;
  4326.     eval $search;               # this screams
  4327.     $/ = "\n";          # put back to normal input delimiter
  4328.     foreach $file (sort keys(%seen)) {
  4329.         print $file, "\n";
  4330.     }</PRE>
  4331. <P></P>
  4332. <DT><STRONG><A NAME="item_sub">sub BLOCK</A></STRONG><BR>
  4333. <DD>
  4334. <DT><STRONG>sub NAME</STRONG><BR>
  4335. <DD>
  4336. <DT><STRONG>sub NAME BLOCK</STRONG><BR>
  4337. <DD>
  4338. This is subroutine definition, not a real function <EM>per se</EM>.  With just a
  4339. NAME (and possibly prototypes or attributes), it's just a forward declaration.
  4340. Without a NAME, it's an anonymous function declaration, and does actually
  4341. return a value: the CODE ref of the closure you just created.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>
  4342. and <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> for details.
  4343. <P></P>
  4344. <DT><STRONG><A NAME="item_substr">substr EXPR,OFFSET,LENGTH,REPLACEMENT</A></STRONG><BR>
  4345. <DD>
  4346. <DT><STRONG>substr EXPR,OFFSET,LENGTH</STRONG><BR>
  4347. <DD>
  4348. <DT><STRONG>substr EXPR,OFFSET</STRONG><BR>
  4349. <DD>
  4350. Extracts a substring out of EXPR and returns it.  First character is at
  4351. offset <CODE>0</CODE>, or whatever you've set <CODE>$[</CODE> to (but don't do that).
  4352. If OFFSET is negative (or more precisely, less than <CODE>$[</CODE>), starts
  4353. that far from the end of the string.  If LENGTH is omitted, returns
  4354. everything to the end of the string.  If LENGTH is negative, leaves that
  4355. many characters off the end of the string.
  4356. <P>You can use the <A HREF="#item_substr"><CODE>substr()</CODE></A> function as an lvalue, in which case EXPR
  4357. must itself be an lvalue.  If you assign something shorter than LENGTH,
  4358. the string will shrink, and if you assign something longer than LENGTH,
  4359. the string will grow to accommodate it.  To keep the string the same
  4360. length you may need to pad or chop your value using <A HREF="#item_sprintf"><CODE>sprintf</CODE></A>.</P>
  4361. <P>If OFFSET and LENGTH specify a substring that is partly outside the
  4362. string, only the part within the string is returned.  If the substring
  4363. is beyond either end of the string, <A HREF="#item_substr"><CODE>substr()</CODE></A> returns the undefined
  4364. value and produces a warning.  When used as an lvalue, specifying a
  4365. substring that is entirely outside the string is a fatal error.
  4366. Here's an example showing the behavior for boundary cases:</P>
  4367. <PRE>
  4368.     my $name = 'fred';
  4369.     substr($name, 4) = 'dy';            # $name is now 'freddy'
  4370.     my $null = substr $name, 6, 2;      # returns '' (no warning)
  4371.     my $oops = substr $name, 7;         # returns undef, with warning
  4372.     substr($name, 7) = 'gap';           # fatal error</PRE>
  4373. <P>An alternative to using <A HREF="#item_substr"><CODE>substr()</CODE></A> as an lvalue is to specify the
  4374. replacement string as the 4th argument.  This allows you to replace
  4375. parts of the EXPR and return what was there before in one operation,
  4376. just as you can with splice().</P>
  4377. <P></P>
  4378. <DT><STRONG><A NAME="item_symlink">symlink OLDFILE,NEWFILE</A></STRONG><BR>
  4379. <DD>
  4380. Creates a new filename symbolically linked to the old filename.
  4381. Returns <CODE>1</CODE> for success, <CODE>0</CODE> otherwise.  On systems that don't support
  4382. symbolic links, produces a fatal error at run time.  To check for that,
  4383. use eval:
  4384. <PRE>
  4385.     $symlink_exists = eval { symlink("",""); 1 };</PRE>
  4386. <P></P>
  4387. <DT><STRONG><A NAME="item_syscall">syscall LIST</A></STRONG><BR>
  4388. <DD>
  4389. Calls the system call specified as the first element of the list,
  4390. passing the remaining elements as arguments to the system call.  If
  4391. unimplemented, produces a fatal error.  The arguments are interpreted
  4392. as follows: if a given argument is numeric, the argument is passed as
  4393. an int.  If not, the pointer to the string value is passed.  You are
  4394. responsible to make sure a string is pre-extended long enough to
  4395. receive any result that might be written into a string.  You can't use a
  4396. string literal (or other read-only string) as an argument to <A HREF="#item_syscall"><CODE>syscall</CODE></A>
  4397. because Perl has to assume that any string pointer might be written
  4398. through.  If your
  4399. integer arguments are not literals and have never been interpreted in a
  4400. numeric context, you may need to add <CODE>0</CODE> to them to force them to look
  4401. like numbers.  This emulates the <A HREF="#item_syswrite"><CODE>syswrite</CODE></A> function (or vice versa):
  4402. <PRE>
  4403.     require 'syscall.ph';               # may need to run h2ph
  4404.     $s = "hi there\n";
  4405.     syscall(&SYS_write, fileno(STDOUT), $s, length $s);</PRE>
  4406. <P>Note that Perl supports passing of up to only 14 arguments to your system call,
  4407. which in practice should usually suffice.</P>
  4408. <P>Syscall returns whatever value returned by the system call it calls.
  4409. If the system call fails, <A HREF="#item_syscall"><CODE>syscall</CODE></A> returns <CODE>-1</CODE> and sets <CODE>$!</CODE> (errno).
  4410. Note that some system calls can legitimately return <CODE>-1</CODE>.  The proper
  4411. way to handle such calls is to assign <CODE>$!=0;</CODE> before the call and
  4412. check the value of <CODE>$!</CODE> if syscall returns <CODE>-1</CODE>.</P>
  4413. <P>There's a problem with <A HREF="#item_syscall"><CODE>syscall(&SYS_pipe)</CODE></A>: it returns the file
  4414. number of the read end of the pipe it creates.  There is no way
  4415. to retrieve the file number of the other end.  You can avoid this 
  4416. problem by using <A HREF="#item_pipe"><CODE>pipe</CODE></A> instead.</P>
  4417. <P></P>
  4418. <DT><STRONG><A NAME="item_sysopen">sysopen FILEHANDLE,FILENAME,MODE</A></STRONG><BR>
  4419. <DD>
  4420. <DT><STRONG>sysopen FILEHANDLE,FILENAME,MODE,PERMS</STRONG><BR>
  4421. <DD>
  4422. Opens the file whose filename is given by FILENAME, and associates it
  4423. with FILEHANDLE.  If FILEHANDLE is an expression, its value is used as
  4424. the name of the real filehandle wanted.  This function calls the
  4425. underlying operating system's <A HREF="#item_open"><CODE>open</CODE></A> function with the parameters
  4426. FILENAME, MODE, PERMS.
  4427. <P>The possible values and flag bits of the MODE parameter are
  4428. system-dependent; they are available via the standard module <CODE>Fcntl</CODE>.
  4429. See the documentation of your operating system's <A HREF="#item_open"><CODE>open</CODE></A> to see which
  4430. values and flag bits are available.  You may combine several flags
  4431. using the <CODE>|</CODE>-operator.</P>
  4432. <P>Some of the most common values are <CODE>O_RDONLY</CODE> for opening the file in
  4433. read-only mode, <CODE>O_WRONLY</CODE> for opening the file in write-only mode,
  4434. and <CODE>O_RDWR</CODE> for opening the file in read-write mode, and.</P>
  4435. <P>For historical reasons, some values work on almost every system
  4436. supported by perl: zero means read-only, one means write-only, and two
  4437. means read/write.  We know that these values do <EM>not</EM> work under
  4438. OS/390 & VM/ESA Unix and on the Macintosh; you probably don't want to
  4439. use them in new code.</P>
  4440. <P>If the file named by FILENAME does not exist and the <A HREF="#item_open"><CODE>open</CODE></A> call creates
  4441. it (typically because MODE includes the <CODE>O_CREAT</CODE> flag), then the value of
  4442. PERMS specifies the permissions of the newly created file.  If you omit
  4443. the PERMS argument to <A HREF="#item_sysopen"><CODE>sysopen</CODE></A>, Perl uses the octal value <CODE>0666</CODE>.
  4444. These permission values need to be in octal, and are modified by your
  4445. process's current <A HREF="#item_umask"><CODE>umask</CODE></A>.</P>
  4446. <P>In many systems the <CODE>O_EXCL</CODE> flag is available for opening files in
  4447. exclusive mode.  This is <STRONG>not</STRONG> locking: exclusiveness means here that
  4448. if the file already exists, <A HREF="#item_sysopen"><CODE>sysopen()</CODE></A> fails.  The <CODE>O_EXCL</CODE> wins
  4449. <CODE>O_TRUNC</CODE>.</P>
  4450. <P>Sometimes you may want to truncate an already-existing file: <CODE>O_TRUNC</CODE>.</P>
  4451. <P>You should seldom if ever use <CODE>0644</CODE> as argument to <A HREF="#item_sysopen"><CODE>sysopen</CODE></A>, because
  4452. that takes away the user's option to have a more permissive umask.
  4453. Better to omit it.  See the <CODE>perlfunc(1)</CODE> entry on <A HREF="#item_umask"><CODE>umask</CODE></A> for more
  4454. on this.</P>
  4455. <P>Note that <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> depends on the <CODE>fdopen()</CODE> C library function.
  4456. On many UNIX systems, <CODE>fdopen()</CODE> is known to fail when file descriptors
  4457. exceed a certain value, typically 255. If you need more file
  4458. descriptors than that, consider rebuilding Perl to use the <CODE>sfio</CODE>
  4459. library, or perhaps using the POSIX::open() function.</P>
  4460. <P>See <A HREF="../../lib/Pod/perlopentut.html">the perlopentut manpage</A> for a kinder, gentler explanation of opening files.</P>
  4461. <P></P>
  4462. <DT><STRONG><A NAME="item_sysread">sysread FILEHANDLE,SCALAR,LENGTH,OFFSET</A></STRONG><BR>
  4463. <DD>
  4464. <DT><STRONG>sysread FILEHANDLE,SCALAR,LENGTH</STRONG><BR>
  4465. <DD>
  4466. Attempts to read LENGTH bytes of data into variable SCALAR from the
  4467. specified FILEHANDLE, using the system call read(2).  It bypasses stdio,
  4468. so mixing this with other kinds of reads, <A HREF="#item_print"><CODE>print</CODE></A>, <A HREF="#item_write"><CODE>write</CODE></A>,
  4469. <A HREF="#item_seek"><CODE>seek</CODE></A>, <A HREF="#item_tell"><CODE>tell</CODE></A>, or <A HREF="#item_eof"><CODE>eof</CODE></A> can cause confusion because stdio
  4470. usually buffers data.  Returns the number of bytes actually read, <CODE>0</CODE>
  4471. at end of file, or undef if there was an error.  SCALAR will be grown or
  4472. shrunk so that the last byte actually read is the last byte of the
  4473. scalar after the read.
  4474. <P>An OFFSET may be specified to place the read data at some place in the
  4475. string other than the beginning.  A negative OFFSET specifies
  4476. placement at that many bytes counting backwards from the end of the
  4477. string.  A positive OFFSET greater than the length of SCALAR results
  4478. in the string being padded to the required size with <CODE>"\0"</CODE> bytes before
  4479. the result of the read is appended.</P>
  4480. <P>There is no <CODE>syseof()</CODE> function, which is ok, since <A HREF="#item_eof"><CODE>eof()</CODE></A> doesn't work
  4481. very well on device files (like ttys) anyway.  Use <A HREF="#item_sysread"><CODE>sysread()</CODE></A> and check
  4482. for a return value for 0 to decide whether you're done.</P>
  4483. <P></P>
  4484. <DT><STRONG><A NAME="item_sysseek">sysseek FILEHANDLE,POSITION,WHENCE</A></STRONG><BR>
  4485. <DD>
  4486. Sets FILEHANDLE's system position using the system call lseek(2).  It
  4487. bypasses stdio, so mixing this with reads (other than <A HREF="#item_sysread"><CODE>sysread</CODE></A>),
  4488. <A HREF="#item_print"><CODE>print</CODE></A>, <A HREF="#item_write"><CODE>write</CODE></A>, <A HREF="#item_seek"><CODE>seek</CODE></A>, <A HREF="#item_tell"><CODE>tell</CODE></A>, or <A HREF="#item_eof"><CODE>eof</CODE></A> may cause confusion.
  4489. FILEHANDLE may be an expression whose value gives the name of the
  4490. filehandle.  The values for WHENCE are <CODE>0</CODE> to set the new position to
  4491. POSITION, <CODE>1</CODE> to set the it to the current position plus POSITION,
  4492. and <CODE>2</CODE> to set it to EOF plus POSITION (typically negative).  For
  4493. WHENCE, you may also use the constants <CODE>SEEK_SET</CODE>, <CODE>SEEK_CUR</CODE>, and
  4494. <CODE>SEEK_END</CODE> (start of the file, current position, end of the file)
  4495. from the Fcntl module.
  4496. <P>Returns the new position, or the undefined value on failure.  A position
  4497. of zero is returned as the string <CODE>"0 but true"</CODE>; thus <A HREF="#item_sysseek"><CODE>sysseek</CODE></A> returns
  4498. true on success and false on failure, yet you can still easily determine
  4499. the new position.</P>
  4500. <P></P>
  4501. <DT><STRONG><A NAME="item_system">system LIST</A></STRONG><BR>
  4502. <DD>
  4503. <DT><STRONG>system PROGRAM LIST</STRONG><BR>
  4504. <DD>
  4505. Does exactly the same thing as <A HREF="#item_exec"><CODE>exec LIST</CODE></A>, except that a fork is
  4506. done first, and the parent process waits for the child process to
  4507. complete.  Note that argument processing varies depending on the
  4508. number of arguments.  If there is more than one argument in LIST,
  4509. or if LIST is an array with more than one value, starts the program
  4510. given by the first element of the list with arguments given by the
  4511. rest of the list.  If there is only one scalar argument, the argument
  4512. is checked for shell metacharacters, and if there are any, the
  4513. entire argument is passed to the system's command shell for parsing
  4514. (this is <CODE>/bin/sh -c</CODE> on Unix platforms, but varies on other
  4515. platforms).  If there are no shell metacharacters in the argument,
  4516. it is split into words and passed directly to <CODE>execvp</CODE>, which is
  4517. more efficient.
  4518. <P>Beginning with v5.6.0, Perl will attempt to flush all files opened for
  4519. output before any operation that may do a fork, but this may not be
  4520. supported on some platforms (see <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A>).  To be safe, you may need
  4521. to set <CODE>$|</CODE> ($AUTOFLUSH in English) or call the <A HREF="../../lib/Pod/perlvar.html#item_autoflush"><CODE>autoflush()</CODE></A> method
  4522. of <CODE>IO::Handle</CODE> on any open handles.</P>
  4523. <P>The return value is the exit status of the program as
  4524. returned by the <A HREF="#item_wait"><CODE>wait</CODE></A> call.  To get the actual exit value divide by
  4525. 256.  See also <A HREF="#exec">exec</A>.  This is <EM>not</EM> what you want to use to capture
  4526. the output from a command, for that you should use merely backticks or
  4527. <A HREF="#item_qx/"><CODE>qx//</CODE></A>, as described in <A HREF="../../lib/Pod/perlop.html#`string`">`STRING` in the perlop manpage</A>.  Return value of -1
  4528. indicates a failure to start the program (inspect $! for the reason).</P>
  4529. <P>Like <A HREF="#item_exec"><CODE>exec</CODE></A>, <A HREF="#item_system"><CODE>system</CODE></A> allows you to lie to a program about its name if
  4530. you use the <A HREF="#item_system"><CODE>system PROGRAM LIST</CODE></A> syntax.  Again, see <A HREF="#exec">exec</A>.</P>
  4531. <P>Because <A HREF="#item_system"><CODE>system</CODE></A> and backticks block <CODE>SIGINT</CODE> and <CODE>SIGQUIT</CODE>, killing the
  4532. program they're running doesn't actually interrupt your program.</P>
  4533. <PRE>
  4534.     @args = ("command", "arg1", "arg2");
  4535.     system(@args) == 0
  4536.          or die "system @args failed: $?"</PRE>
  4537. <P>You can check all the failure possibilities by inspecting
  4538. <CODE>$?</CODE> like this:</P>
  4539. <PRE>
  4540.     $exit_value  = $? >> 8;
  4541.     $signal_num  = $? & 127;
  4542.     $dumped_core = $? & 128;</PRE>
  4543. <P>When the arguments get executed via the system shell, results
  4544. and return codes will be subject to its quirks and capabilities.
  4545. See <A HREF="../../lib/Pod/perlop.html#`string`">`STRING` in the perlop manpage</A> and <A HREF="#exec">exec</A> for details.</P>
  4546. <P></P>
  4547. <DT><STRONG><A NAME="item_syswrite">syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET</A></STRONG><BR>
  4548. <DD>
  4549. <DT><STRONG>syswrite FILEHANDLE,SCALAR,LENGTH</STRONG><BR>
  4550. <DD>
  4551. <DT><STRONG>syswrite FILEHANDLE,SCALAR</STRONG><BR>
  4552. <DD>
  4553. Attempts to write LENGTH bytes of data from variable SCALAR to the
  4554. specified FILEHANDLE, using the system call write(2).  If LENGTH
  4555. is not specified, writes whole SCALAR.  It bypasses stdio, so mixing
  4556. this with reads (other than <A HREF="#item_sysread"><CODE>sysread())</CODE></A>, <A HREF="#item_print"><CODE>print</CODE></A>, <A HREF="#item_write"><CODE>write</CODE></A>,
  4557. <A HREF="#item_seek"><CODE>seek</CODE></A>, <A HREF="#item_tell"><CODE>tell</CODE></A>, or <A HREF="#item_eof"><CODE>eof</CODE></A> may cause confusion because stdio
  4558. usually buffers data.  Returns the number of bytes actually written,
  4559. or <A HREF="#item_undef"><CODE>undef</CODE></A> if there was an error.  If the LENGTH is greater than
  4560. the available data in the SCALAR after the OFFSET, only as much
  4561. data as is available will be written.
  4562. <P>An OFFSET may be specified to write the data from some part of the
  4563. string other than the beginning.  A negative OFFSET specifies writing
  4564. that many bytes counting backwards from the end of the string.  In the
  4565. case the SCALAR is empty you can use OFFSET but only zero offset.</P>
  4566. <P></P>
  4567. <DT><STRONG><A NAME="item_tell">tell FILEHANDLE</A></STRONG><BR>
  4568. <DD>
  4569. <DT><STRONG>tell</STRONG><BR>
  4570. <DD>
  4571. Returns the current position for FILEHANDLE.  FILEHANDLE may be an
  4572. expression whose value gives the name of the actual filehandle.  If
  4573. FILEHANDLE is omitted, assumes the file last read.
  4574. <P>There is no <CODE>systell</CODE> function.  Use <A HREF="#item_sysseek"><CODE>sysseek(FH, 0, 1)</CODE></A> for that.</P>
  4575. <P></P>
  4576. <DT><STRONG><A NAME="item_telldir">telldir DIRHANDLE</A></STRONG><BR>
  4577. <DD>
  4578. Returns the current position of the <A HREF="#item_readdir"><CODE>readdir</CODE></A> routines on DIRHANDLE.
  4579. Value may be given to <A HREF="#item_seekdir"><CODE>seekdir</CODE></A> to access a particular location in a
  4580. directory.  Has the same caveats about possible directory compaction as
  4581. the corresponding system library routine.
  4582. <P></P>
  4583. <DT><STRONG><A NAME="item_tie">tie VARIABLE,CLASSNAME,LIST</A></STRONG><BR>
  4584. <DD>
  4585. This function binds a variable to a package class that will provide the
  4586. implementation for the variable.  VARIABLE is the name of the variable
  4587. to be enchanted.  CLASSNAME is the name of a class implementing objects
  4588. of correct type.  Any additional arguments are passed to the <CODE>new</CODE>
  4589. method of the class (meaning <CODE>TIESCALAR</CODE>, <CODE>TIEHANDLE</CODE>, <CODE>TIEARRAY</CODE>,
  4590. or <CODE>TIEHASH</CODE>).  Typically these are arguments such as might be passed
  4591. to the <CODE>dbm_open()</CODE> function of C.  The object returned by the <CODE>new</CODE>
  4592. method is also returned by the <A HREF="#item_tie"><CODE>tie</CODE></A> function, which would be useful
  4593. if you want to access other methods in CLASSNAME.
  4594. <P>Note that functions such as <A HREF="#item_keys"><CODE>keys</CODE></A> and <A HREF="#item_values"><CODE>values</CODE></A> may return huge lists
  4595. when used on large objects, like DBM files.  You may prefer to use the
  4596. <A HREF="#item_each"><CODE>each</CODE></A> function to iterate over such.  Example:</P>
  4597. <PRE>
  4598.     # print out history file offsets
  4599.     use NDBM_File;
  4600.     tie(%HIST, 'NDBM_File', '/usr/lib/news/history', 1, 0);
  4601.     while (($key,$val) = each %HIST) {
  4602.         print $key, ' = ', unpack('L',$val), "\n";
  4603.     }
  4604.     untie(%HIST);</PRE>
  4605. <P>A class implementing a hash should have the following methods:</P>
  4606. <PRE>
  4607.     TIEHASH classname, LIST
  4608.     FETCH this, key
  4609.     STORE this, key, value
  4610.     DELETE this, key
  4611.     CLEAR this
  4612.     EXISTS this, key
  4613.     FIRSTKEY this
  4614.     NEXTKEY this, lastkey
  4615.     DESTROY this</PRE>
  4616. <P>A class implementing an ordinary array should have the following methods:</P>
  4617. <PRE>
  4618.     TIEARRAY classname, LIST
  4619.     FETCH this, key
  4620.     STORE this, key, value
  4621.     FETCHSIZE this
  4622.     STORESIZE this, count
  4623.     CLEAR this
  4624.     PUSH this, LIST
  4625.     POP this
  4626.     SHIFT this
  4627.     UNSHIFT this, LIST
  4628.     SPLICE this, offset, length, LIST
  4629.     EXTEND this, count
  4630.     DESTROY this</PRE>
  4631. <P>A class implementing a file handle should have the following methods:</P>
  4632. <PRE>
  4633.     TIEHANDLE classname, LIST
  4634.     READ this, scalar, length, offset
  4635.     READLINE this
  4636.     GETC this
  4637.     WRITE this, scalar, length, offset
  4638.     PRINT this, LIST
  4639.     PRINTF this, format, LIST
  4640.     CLOSE this
  4641.     DESTROY this</PRE>
  4642. <P>A class implementing a scalar should have the following methods:</P>
  4643. <PRE>
  4644.     TIESCALAR classname, LIST
  4645.     FETCH this,
  4646.     STORE this, value
  4647.     DESTROY this</PRE>
  4648. <P>Not all methods indicated above need be implemented.  See <A HREF="../../lib/Pod/perltie.html">the perltie manpage</A>,
  4649. <A HREF="../../lib/Tie/Hash.html">the Tie::Hash manpage</A>, <A HREF="../../lib/Tie/Array.html">the Tie::Array manpage</A>, <A HREF="../../lib/Tie/Scalar.html">the Tie::Scalar manpage</A>, and <A HREF="../../lib/Tie/Handle.html">the Tie::Handle manpage</A>.</P>
  4650. <P>Unlike <A HREF="#item_dbmopen"><CODE>dbmopen</CODE></A>, the <A HREF="#item_tie"><CODE>tie</CODE></A> function will not use or require a module
  4651. for you--you need to do that explicitly yourself.  See <A HREF="../../lib/DB_File.html">the DB_File manpage</A>
  4652. or the <EM>Config</EM> module for interesting <A HREF="#item_tie"><CODE>tie</CODE></A> implementations.</P>
  4653. <P>For further details see <A HREF="../../lib/Pod/perltie.html">the perltie manpage</A>, <A HREF="#tied variable">tied VARIABLE</A>.</P>
  4654. <P></P>
  4655. <DT><STRONG><A NAME="item_tied">tied VARIABLE</A></STRONG><BR>
  4656. <DD>
  4657. Returns a reference to the object underlying VARIABLE (the same value
  4658. that was originally returned by the <A HREF="#item_tie"><CODE>tie</CODE></A> call that bound the variable
  4659. to a package.)  Returns the undefined value if VARIABLE isn't tied to a
  4660. package.
  4661. <P></P>
  4662. <DT><STRONG><A NAME="item_time">time</A></STRONG><BR>
  4663. <DD>
  4664. Returns the number of non-leap seconds since whatever time the system
  4665. considers to be the epoch (that's 00:00:00, January 1, 1904 for MacOS,
  4666. and 00:00:00 UTC, January 1, 1970 for most other systems).
  4667. Suitable for feeding to <A HREF="#item_gmtime"><CODE>gmtime</CODE></A> and <A HREF="#item_localtime"><CODE>localtime</CODE></A>.
  4668. <P>For measuring time in better granularity than one second,
  4669. you may use either the Time::HiRes module from CPAN, or
  4670. if you have gettimeofday(2), you may be able to use the
  4671. <A HREF="#item_syscall"><CODE>syscall</CODE></A> interface of Perl, see <A HREF="../../lib/Pod/perlfaq8.html">the perlfaq8 manpage</A> for details.</P>
  4672. <P></P>
  4673. <DT><STRONG><A NAME="item_times">times</A></STRONG><BR>
  4674. <DD>
  4675. Returns a four-element list giving the user and system times, in
  4676. seconds, for this process and the children of this process.
  4677. <PRE>
  4678.     ($user,$system,$cuser,$csystem) = times;</PRE>
  4679. <P></P>
  4680. <DT><STRONG><A NAME="item_tr/">tr///</A></STRONG><BR>
  4681. <DD>
  4682. The transliteration operator.  Same as <A HREF="#item_y/"><CODE>y///</CODE></A>.  See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  4683. <P></P>
  4684. <DT><STRONG><A NAME="item_truncate">truncate FILEHANDLE,LENGTH</A></STRONG><BR>
  4685. <DD>
  4686. <DT><STRONG>truncate EXPR,LENGTH</STRONG><BR>
  4687. <DD>
  4688. Truncates the file opened on FILEHANDLE, or named by EXPR, to the
  4689. specified length.  Produces a fatal error if truncate isn't implemented
  4690. on your system.  Returns true if successful, the undefined value
  4691. otherwise.
  4692. <P></P>
  4693. <DT><STRONG><A NAME="item_uc">uc EXPR</A></STRONG><BR>
  4694. <DD>
  4695. <DT><STRONG>uc</STRONG><BR>
  4696. <DD>
  4697. Returns an uppercased version of EXPR.  This is the internal function
  4698. implementing the <CODE>\U</CODE> escape in double-quoted strings.
  4699. Respects current LC_CTYPE locale if <CODE>use locale</CODE> in force.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.
  4700. Under Unicode (<CODE>use utf8</CODE>) it uses the standard Unicode uppercase mappings.  (It
  4701. does not attempt to do titlecase mapping on initial letters.  See <A HREF="#item_ucfirst"><CODE>ucfirst</CODE></A> for that.)
  4702. <P>If EXPR is omitted, uses <CODE>$_</CODE>.</P>
  4703. <P></P>
  4704. <DT><STRONG><A NAME="item_ucfirst">ucfirst EXPR</A></STRONG><BR>
  4705. <DD>
  4706. <DT><STRONG>ucfirst</STRONG><BR>
  4707. <DD>
  4708. Returns the value of EXPR with the first character
  4709. in uppercase (titlecase in Unicode).  This is
  4710. the internal function implementing the <CODE>\u</CODE> escape in double-quoted strings.
  4711. Respects current LC_CTYPE locale if <CODE>use locale</CODE> in force.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>
  4712. and <A HREF="../../lib/utf8.html">the utf8 manpage</A>.
  4713. <P>If EXPR is omitted, uses <CODE>$_</CODE>.</P>
  4714. <P></P>
  4715. <DT><STRONG><A NAME="item_umask">umask EXPR</A></STRONG><BR>
  4716. <DD>
  4717. <DT><STRONG>umask</STRONG><BR>
  4718. <DD>
  4719. Sets the umask for the process to EXPR and returns the previous value.
  4720. If EXPR is omitted, merely returns the current umask.
  4721. <P>The Unix permission <CODE>rwxr-x---</CODE> is represented as three sets of three
  4722. bits, or three octal digits: <CODE>0750</CODE> (the leading 0 indicates octal
  4723. and isn't one of the digits).  The <A HREF="#item_umask"><CODE>umask</CODE></A> value is such a number
  4724. representing disabled permissions bits.  The permission (or ``mode'')
  4725. values you pass <A HREF="#item_mkdir"><CODE>mkdir</CODE></A> or <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> are modified by your umask, so
  4726. even if you tell <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> to create a file with permissions <CODE>0777</CODE>,
  4727. if your umask is <CODE>0022</CODE> then the file will actually be created with
  4728. permissions <CODE>0755</CODE>.  If your <A HREF="#item_umask"><CODE>umask</CODE></A> were <CODE>0027</CODE> (group can't
  4729. write; others can't read, write, or execute), then passing
  4730. <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> <CODE>0666</CODE> would create a file with mode <CODE>0640</CODE> (<CODE>0666 &~
  4731. 027</CODE> is <CODE>0640</CODE>).</P>
  4732. <P>Here's some advice: supply a creation mode of <CODE>0666</CODE> for regular
  4733. files (in <A HREF="#item_sysopen"><CODE>sysopen</CODE></A>) and one of <CODE>0777</CODE> for directories (in
  4734. <A HREF="#item_mkdir"><CODE>mkdir</CODE></A>) and executable files.  This gives users the freedom of
  4735. choice: if they want protected files, they might choose process umasks
  4736. of <CODE>022</CODE>, <CODE>027</CODE>, or even the particularly antisocial mask of <CODE>077</CODE>.
  4737. Programs should rarely if ever make policy decisions better left to
  4738. the user.  The exception to this is when writing files that should be
  4739. kept private: mail files, web browser cookies, <EM>.rhosts</EM> files, and
  4740. so on.</P>
  4741. <P>If <A HREF="#item_umask"><CODE>umask(2)</CODE></A> is not implemented on your system and you are trying to
  4742. restrict access for <EM>yourself</EM> (i.e., (EXPR & 0700) > 0), produces a
  4743. fatal error at run time.  If <A HREF="#item_umask"><CODE>umask(2)</CODE></A> is not implemented and you are
  4744. not trying to restrict access for yourself, returns <A HREF="#item_undef"><CODE>undef</CODE></A>.</P>
  4745. <P>Remember that a umask is a number, usually given in octal; it is <EM>not</EM> a
  4746. string of octal digits.  See also <A HREF="#oct">oct</A>, if all you have is a string.</P>
  4747. <P></P>
  4748. <DT><STRONG><A NAME="item_undef">undef EXPR</A></STRONG><BR>
  4749. <DD>
  4750. <DT><STRONG>undef</STRONG><BR>
  4751. <DD>
  4752. Undefines the value of EXPR, which must be an lvalue.  Use only on a
  4753. scalar value, an array (using <CODE>@</CODE>), a hash (using <CODE>%</CODE>), a subroutine
  4754. (using <CODE>&</CODE>), or a typeglob (using <*>).  (Saying <CODE>undef $hash{$key}</CODE>
  4755. will probably not do what you expect on most predefined variables or
  4756. DBM list values, so don't do that; see <A HREF="#item_delete">delete</A>.)  Always returns the
  4757. undefined value.  You can omit the EXPR, in which case nothing is
  4758. undefined, but you still get an undefined value that you could, for
  4759. instance, return from a subroutine, assign to a variable or pass as a
  4760. parameter.  Examples:
  4761. <PRE>
  4762.     undef $foo;
  4763.     undef $bar{'blurfl'};      # Compare to: delete $bar{'blurfl'};
  4764.     undef @ary;
  4765.     undef %hash;
  4766.     undef &mysub;
  4767.     undef *xyz;       # destroys $xyz, @xyz, %xyz, &xyz, etc.
  4768.     return (wantarray ? (undef, $errmsg) : undef) if $they_blew_it;
  4769.     select undef, undef, undef, 0.25;
  4770.     ($a, $b, undef, $c) = &foo;       # Ignore third value returned</PRE>
  4771. <P>Note that this is a unary operator, not a list operator.</P>
  4772. <P></P>
  4773. <DT><STRONG><A NAME="item_unlink">unlink LIST</A></STRONG><BR>
  4774. <DD>
  4775. <DT><STRONG>unlink</STRONG><BR>
  4776. <DD>
  4777. Deletes a list of files.  Returns the number of files successfully
  4778. deleted.
  4779. <PRE>
  4780.     $cnt = unlink 'a', 'b', 'c';
  4781.     unlink @goners;
  4782.     unlink <*.bak>;</PRE>
  4783. <P>Note: <A HREF="#item_unlink"><CODE>unlink</CODE></A> will not delete directories unless you are superuser and
  4784. the <STRONG>-U</STRONG> flag is supplied to Perl.  Even if these conditions are
  4785. met, be warned that unlinking a directory can inflict damage on your
  4786. filesystem.  Use <A HREF="#item_rmdir"><CODE>rmdir</CODE></A> instead.</P>
  4787. <P>If LIST is omitted, uses <CODE>$_</CODE>.</P>
  4788. <P></P>
  4789. <DT><STRONG><A NAME="item_unpack">unpack TEMPLATE,EXPR</A></STRONG><BR>
  4790. <DD>
  4791. <A HREF="#item_unpack"><CODE>unpack</CODE></A> does the reverse of <A HREF="#item_pack"><CODE>pack</CODE></A>: it takes a string
  4792. and expands it out into a list of values.
  4793. (In scalar context, it returns merely the first value produced.)
  4794. <P>The string is broken into chunks described by the TEMPLATE.  Each chunk
  4795. is converted separately to a value.  Typically, either the string is a result
  4796. of <A HREF="#item_pack"><CODE>pack</CODE></A>, or the bytes of the string represent a C structure of some
  4797. kind.</P>
  4798. <P>The TEMPLATE has the same format as in the <A HREF="#item_pack"><CODE>pack</CODE></A> function.
  4799. Here's a subroutine that does substring:</P>
  4800. <PRE>
  4801.     sub substr {
  4802.         my($what,$where,$howmuch) = @_;
  4803.         unpack("x$where a$howmuch", $what);
  4804.     }</PRE>
  4805. <P>and then there's</P>
  4806. <PRE>
  4807.     sub ordinal { unpack("c",$_[0]); } # same as ord()</PRE>
  4808. <P>In addition to fields allowed in pack(), you may prefix a field with
  4809. a %<number> to indicate that
  4810. you want a <number>-bit checksum of the items instead of the items
  4811. themselves.  Default is a 16-bit checksum.  Checksum is calculated by
  4812. summing numeric values of expanded values (for string fields the sum of
  4813. <A HREF="#item_ord"><CODE>ord($char)</CODE></A> is taken, for bit fields the sum of zeroes and ones).</P>
  4814. <P>For example, the following
  4815. computes the same number as the System V sum program:</P>
  4816. <PRE>
  4817.     $checksum = do {
  4818.         local $/;  # slurp!
  4819.         unpack("%32C*",<>) % 65535;
  4820.     };</PRE>
  4821. <P>The following efficiently counts the number of set bits in a bit vector:</P>
  4822. <PRE>
  4823.     $setbits = unpack("%32b*", $selectmask);</PRE>
  4824. <P>The <CODE>p</CODE> and <CODE>P</CODE> formats should be used with care.  Since Perl
  4825. has no way of checking whether the value passed to <A HREF="#item_unpack"><CODE>unpack()</CODE></A>
  4826. corresponds to a valid memory location, passing a pointer value that's
  4827. not known to be valid is likely to have disastrous consequences.</P>
  4828. <P>If the repeat count of a field is larger than what the remainder of
  4829. the input string allows, repeat count is decreased.  If the input string
  4830. is longer than one described by the TEMPLATE, the rest is ignored.</P>
  4831. <P>See <A HREF="#pack">pack</A> for more examples and notes.</P>
  4832. <P></P>
  4833. <DT><STRONG><A NAME="item_untie">untie VARIABLE</A></STRONG><BR>
  4834. <DD>
  4835. Breaks the binding between a variable and a package.  (See <A HREF="#item_tie"><CODE>tie</CODE></A>.)
  4836. <P></P>
  4837. <DT><STRONG><A NAME="item_unshift">unshift ARRAY,LIST</A></STRONG><BR>
  4838. <DD>
  4839. Does the opposite of a <A HREF="#item_shift"><CODE>shift</CODE></A>.  Or the opposite of a <A HREF="#item_push"><CODE>push</CODE></A>,
  4840. depending on how you look at it.  Prepends list to the front of the
  4841. array, and returns the new number of elements in the array.
  4842. <PRE>
  4843.     unshift(ARGV, '-e') unless $ARGV[0] =~ /^-/;</PRE>
  4844. <P>Note the LIST is prepended whole, not one element at a time, so the
  4845. prepended elements stay in the same order.  Use <A HREF="#item_reverse"><CODE>reverse</CODE></A> to do the
  4846. reverse.</P>
  4847. <P></P>
  4848. <DT><STRONG><A NAME="item_use">use Module VERSION LIST</A></STRONG><BR>
  4849. <DD>
  4850. <DT><STRONG>use Module VERSION</STRONG><BR>
  4851. <DD>
  4852. <DT><STRONG>use Module LIST</STRONG><BR>
  4853. <DD>
  4854. <DT><STRONG>use Module</STRONG><BR>
  4855. <DD>
  4856. <DT><STRONG>use VERSION</STRONG><BR>
  4857. <DD>
  4858. Imports some semantics into the current package from the named module,
  4859. generally by aliasing certain subroutine or variable names into your
  4860. package.  It is exactly equivalent to
  4861. <PRE>
  4862.     BEGIN { require Module; import Module LIST; }</PRE>
  4863. <P>except that Module <EM>must</EM> be a bareword.</P>
  4864. <P>VERSION, which can be specified as a literal of the form v5.6.1, demands
  4865. that the current version of Perl (<CODE>$^V</CODE> or $PERL_VERSION) be at least
  4866. as recent as that version.  (For compatibility with older versions of Perl,
  4867. a numeric literal will also be interpreted as VERSION.)  If the version
  4868. of the running Perl interpreter is less than VERSION, then an error
  4869. message is printed and Perl exits immediately without attempting to
  4870. parse the rest of the file.  Compare with <A HREF="#require">require</A>, which can do a
  4871. similar check at run time.</P>
  4872. <PRE>
  4873.     use v5.6.1;         # compile time version check
  4874.     use 5.6.1;          # ditto
  4875.     use 5.005_03;       # float version allowed for compatibility</PRE>
  4876. <P>This is often useful if you need to check the current Perl version before
  4877. <A HREF="#item_use"><CODE>use</CODE></A>ing library modules that have changed in incompatible ways from
  4878. older versions of Perl.  (We try not to do this more than we have to.)</P>
  4879. <P>The <CODE>BEGIN</CODE> forces the <A HREF="#item_require"><CODE>require</CODE></A> and <A HREF="#item_import"><CODE>import</CODE></A> to happen at compile time.  The
  4880. <A HREF="#item_require"><CODE>require</CODE></A> makes sure the module is loaded into memory if it hasn't been
  4881. yet.  The <A HREF="#item_import"><CODE>import</CODE></A> is not a builtin--it's just an ordinary static method
  4882. call into the <CODE>Module</CODE> package to tell the module to import the list of
  4883. features back into the current package.  The module can implement its
  4884. <A HREF="#item_import"><CODE>import</CODE></A> method any way it likes, though most modules just choose to
  4885. derive their <A HREF="#item_import"><CODE>import</CODE></A> method via inheritance from the <CODE>Exporter</CODE> class that
  4886. is defined in the <CODE>Exporter</CODE> module.  See <A HREF="../../lib/Exporter.html">the Exporter manpage</A>.  If no <A HREF="#item_import"><CODE>import</CODE></A>
  4887. method can be found then the call is skipped.</P>
  4888. <P>If you don't want your namespace altered, explicitly supply an empty list:</P>
  4889. <PRE>
  4890.     use Module ();</PRE>
  4891. <P>That is exactly equivalent to</P>
  4892. <PRE>
  4893.     BEGIN { require Module }</PRE>
  4894. <P>If the VERSION argument is present between Module and LIST, then the
  4895. <A HREF="#item_use"><CODE>use</CODE></A> will call the VERSION method in class Module with the given
  4896. version as an argument.  The default VERSION method, inherited from
  4897. the UNIVERSAL class, croaks if the given version is larger than the
  4898. value of the variable <CODE>$Module::VERSION</CODE>.</P>
  4899. <P>Again, there is a distinction between omitting LIST (<A HREF="#item_import"><CODE>import</CODE></A> called
  4900. with no arguments) and an explicit empty LIST <CODE>()</CODE> (<A HREF="#item_import"><CODE>import</CODE></A> not
  4901. called).  Note that there is no comma after VERSION!</P>
  4902. <P>Because this is a wide-open interface, pragmas (compiler directives)
  4903. are also implemented this way.  Currently implemented pragmas are:</P>
  4904. <PRE>
  4905.     use integer;
  4906.     use diagnostics;
  4907.     use sigtrap  qw(SEGV BUS);
  4908.     use strict   qw(subs vars refs);
  4909.     use subs     qw(afunc blurfl);
  4910.     use warnings qw(all);</PRE>
  4911. <P>Some of these pseudo-modules import semantics into the current
  4912. block scope (like <CODE>strict</CODE> or <CODE>integer</CODE>, unlike ordinary modules,
  4913. which import symbols into the current package (which are effective
  4914. through the end of the file).</P>
  4915. <P>There's a corresponding <A HREF="#item_no"><CODE>no</CODE></A> command that unimports meanings imported
  4916. by <A HREF="#item_use"><CODE>use</CODE></A>, i.e., it calls <CODE>unimport Module LIST</CODE> instead of <A HREF="#item_import"><CODE>import</CODE></A>.</P>
  4917. <PRE>
  4918.     no integer;
  4919.     no strict 'refs';
  4920.     no warnings;</PRE>
  4921. <P>If no <CODE>unimport</CODE> method can be found the call fails with a fatal error.</P>
  4922. <P>See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A> for a list of standard modules and pragmas.</P>
  4923. <P></P>
  4924. <DT><STRONG><A NAME="item_utime">utime LIST</A></STRONG><BR>
  4925. <DD>
  4926. Changes the access and modification times on each file of a list of
  4927. files.  The first two elements of the list must be the NUMERICAL access
  4928. and modification times, in that order.  Returns the number of files
  4929. successfully changed.  The inode change time of each file is set
  4930. to the current time.  This code has the same effect as the <CODE>touch</CODE>
  4931. command if the files already exist:
  4932. <PRE>
  4933.     #!/usr/bin/perl
  4934.     $now = time;
  4935.     utime $now, $now, @ARGV;</PRE>
  4936. <P></P>
  4937. <DT><STRONG><A NAME="item_values">values HASH</A></STRONG><BR>
  4938. <DD>
  4939. Returns a list consisting of all the values of the named hash.  (In a
  4940. scalar context, returns the number of values.)  The values are
  4941. returned in an apparently random order.  The actual random order is
  4942. subject to change in future versions of perl, but it is guaranteed to
  4943. be the same order as either the <A HREF="#item_keys"><CODE>keys</CODE></A> or <A HREF="#item_each"><CODE>each</CODE></A> function would
  4944. produce on the same (unmodified) hash.
  4945. <P>Note that you cannot modify the values of a hash this way, because the
  4946. returned list is just a copy.  You need to use a hash slice for that, 
  4947. since it's lvaluable in a way that <A HREF="#item_values"><CODE>values()</CODE></A> is not.</P>
  4948. <PRE>
  4949.     for (values %hash)      { s/foo/bar/g }   # FAILS!
  4950.     for (@hash{keys %hash}) { s/foo/bar/g }   # ok</PRE>
  4951. <P>As a side effect, calling <A HREF="#item_values"><CODE>values()</CODE></A> resets the HASH's internal iterator.
  4952. See also <A HREF="#item_keys"><CODE>keys</CODE></A>, <A HREF="#item_each"><CODE>each</CODE></A>, and <A HREF="#item_sort"><CODE>sort</CODE></A>.</P>
  4953. <P></P>
  4954. <DT><STRONG><A NAME="item_vec">vec EXPR,OFFSET,BITS</A></STRONG><BR>
  4955. <DD>
  4956. Treats the string in EXPR as a bit vector made up of elements of
  4957. width BITS, and returns the value of the element specified by OFFSET
  4958. as an unsigned integer.  BITS therefore specifies the number of bits
  4959. that are reserved for each element in the bit vector.  This must
  4960. be a power of two from 1 to 32 (or 64, if your platform supports
  4961. that).
  4962. <P>If BITS is 8, ``elements'' coincide with bytes of the input string.</P>
  4963. <P>If BITS is 16 or more, bytes of the input string are grouped into chunks
  4964. of size BITS/8, and each group is converted to a number as with
  4965. <A HREF="#item_pack"><CODE>pack()/unpack()</CODE></A> with big-endian formats <CODE>n</CODE>/<CODE>N</CODE> (and analoguously
  4966. for BITS==64).  See <A HREF="#pack">pack</A> for details.</P>
  4967. <P>If bits is 4 or less, the string is broken into bytes, then the bits
  4968. of each byte are broken into 8/BITS groups.  Bits of a byte are
  4969. numbered in a little-endian-ish way, as in <CODE>0x01</CODE>, <CODE>0x02</CODE>,
  4970. <CODE>0x04</CODE>, <CODE>0x08</CODE>, <CODE>0x10</CODE>, <CODE>0x20</CODE>, <CODE>0x40</CODE>, <CODE>0x80</CODE>.  For example,
  4971. breaking the single input byte <A HREF="#item_chr"><CODE>chr(0x36)</CODE></A> into two groups gives a list
  4972. <CODE>(0x6, 0x3)</CODE>; breaking it into 4 groups gives <CODE>(0x2, 0x1, 0x3, 0x0)</CODE>.</P>
  4973. <P><A HREF="#item_vec"><CODE>vec</CODE></A> may also be assigned to, in which case parentheses are needed
  4974. to give the expression the correct precedence as in</P>
  4975. <PRE>
  4976.     vec($image, $max_x * $x + $y, 8) = 3;</PRE>
  4977. <P>If the selected element is off the end of the string, the value 0 is
  4978. returned.  If an element off the end of the string is written to,
  4979. Perl will first extend the string with sufficiently many zero bytes.</P>
  4980. <P>Strings created with <A HREF="#item_vec"><CODE>vec</CODE></A> can also be manipulated with the logical
  4981. operators <CODE>|</CODE>, <CODE>&</CODE>, <CODE>^</CODE>, and <CODE>~</CODE>.  These operators will assume a bit
  4982. vector operation is desired when both operands are strings.
  4983. See <A HREF="../../lib/Pod/perlop.html#bitwise string operators">Bitwise String Operators in the perlop manpage</A>.</P>
  4984. <P>The following code will build up an ASCII string saying <CODE>'PerlPerlPerl'</CODE>.
  4985. The comments show the string after each step.  Note that this code works
  4986. in the same way on big-endian or little-endian machines.</P>
  4987. <PRE>
  4988.     my $foo = '';
  4989.     vec($foo,  0, 32) = 0x5065726C;     # 'Perl'</PRE>
  4990. <PRE>
  4991.     # $foo eq "Perl" eq "\x50\x65\x72\x6C", 32 bits
  4992.     print vec($foo, 0, 8);              # prints 80 == 0x50 == ord('P')</PRE>
  4993. <PRE>
  4994.     vec($foo,  2, 16) = 0x5065;         # 'PerlPe'
  4995.     vec($foo,  3, 16) = 0x726C;         # 'PerlPerl'
  4996.     vec($foo,  8,  8) = 0x50;           # 'PerlPerlP'
  4997.     vec($foo,  9,  8) = 0x65;           # 'PerlPerlPe'
  4998.     vec($foo, 20,  4) = 2;              # 'PerlPerlPe'   . "\x02"
  4999.     vec($foo, 21,  4) = 7;              # 'PerlPerlPer'
  5000.                                         # 'r' is "\x72"
  5001.     vec($foo, 45,  2) = 3;              # 'PerlPerlPer'  . "\x0c"
  5002.     vec($foo, 93,  1) = 1;              # 'PerlPerlPer'  . "\x2c"
  5003.     vec($foo, 94,  1) = 1;              # 'PerlPerlPerl'
  5004.                                         # 'l' is "\x6c"</PRE>
  5005. <P>To transform a bit vector into a string or list of 0's and 1's, use these:</P>
  5006. <PRE>
  5007.     $bits = unpack("b*", $vector);
  5008.     @bits = split(//, unpack("b*", $vector));</PRE>
  5009. <P>If you know the exact length in bits, it can be used in place of the <CODE>*</CODE>.</P>
  5010. <P>Here is an example to illustrate how the bits actually fall in place:</P>
  5011. <PRE>
  5012.     #!/usr/bin/perl -wl</PRE>
  5013. <PRE>
  5014.     print <<'EOT';
  5015.                                       0         1         2         3  
  5016.                        unpack("V",$_) 01234567890123456789012345678901
  5017.     ------------------------------------------------------------------
  5018.     EOT</PRE>
  5019. <PRE>
  5020.     for $w (0..3) {
  5021.         $width = 2**$w;
  5022.         for ($shift=0; $shift < $width; ++$shift) {
  5023.             for ($off=0; $off < 32/$width; ++$off) {
  5024.                 $str = pack("B*", "0"x32);
  5025.                 $bits = (1<<$shift);
  5026.                 vec($str, $off, $width) = $bits;
  5027.                 $res = unpack("b*",$str);
  5028.                 $val = unpack("V", $str);
  5029.                 write;
  5030.             }
  5031.         }
  5032.     }</PRE>
  5033. <PRE>
  5034.     format STDOUT =
  5035.     vec($_,@#,@#) = @<< == @######### @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  5036.     $off, $width, $bits, $val, $res
  5037.     .
  5038.     __END__</PRE>
  5039. <P>Regardless of the machine architecture on which it is run, the above
  5040. example should print the following table:</P>
  5041. <PRE>
  5042.                                       0         1         2         3  
  5043.                        unpack("V",$_) 01234567890123456789012345678901
  5044.     ------------------------------------------------------------------
  5045.     vec($_, 0, 1) = 1   ==          1 10000000000000000000000000000000
  5046.     vec($_, 1, 1) = 1   ==          2 01000000000000000000000000000000
  5047.     vec($_, 2, 1) = 1   ==          4 00100000000000000000000000000000
  5048.     vec($_, 3, 1) = 1   ==          8 00010000000000000000000000000000
  5049.     vec($_, 4, 1) = 1   ==         16 00001000000000000000000000000000
  5050.     vec($_, 5, 1) = 1   ==         32 00000100000000000000000000000000
  5051.     vec($_, 6, 1) = 1   ==         64 00000010000000000000000000000000
  5052.     vec($_, 7, 1) = 1   ==        128 00000001000000000000000000000000
  5053.     vec($_, 8, 1) = 1   ==        256 00000000100000000000000000000000
  5054.     vec($_, 9, 1) = 1   ==        512 00000000010000000000000000000000
  5055.     vec($_,10, 1) = 1   ==       1024 00000000001000000000000000000000
  5056.     vec($_,11, 1) = 1   ==       2048 00000000000100000000000000000000
  5057.     vec($_,12, 1) = 1   ==       4096 00000000000010000000000000000000
  5058.     vec($_,13, 1) = 1   ==       8192 00000000000001000000000000000000
  5059.     vec($_,14, 1) = 1   ==      16384 00000000000000100000000000000000
  5060.     vec($_,15, 1) = 1   ==      32768 00000000000000010000000000000000
  5061.     vec($_,16, 1) = 1   ==      65536 00000000000000001000000000000000
  5062.     vec($_,17, 1) = 1   ==     131072 00000000000000000100000000000000
  5063.     vec($_,18, 1) = 1   ==     262144 00000000000000000010000000000000
  5064.     vec($_,19, 1) = 1   ==     524288 00000000000000000001000000000000
  5065.     vec($_,20, 1) = 1   ==    1048576 00000000000000000000100000000000
  5066.     vec($_,21, 1) = 1   ==    2097152 00000000000000000000010000000000
  5067.     vec($_,22, 1) = 1   ==    4194304 00000000000000000000001000000000
  5068.     vec($_,23, 1) = 1   ==    8388608 00000000000000000000000100000000
  5069.     vec($_,24, 1) = 1   ==   16777216 00000000000000000000000010000000
  5070.     vec($_,25, 1) = 1   ==   33554432 00000000000000000000000001000000
  5071.     vec($_,26, 1) = 1   ==   67108864 00000000000000000000000000100000
  5072.     vec($_,27, 1) = 1   ==  134217728 00000000000000000000000000010000
  5073.     vec($_,28, 1) = 1   ==  268435456 00000000000000000000000000001000
  5074.     vec($_,29, 1) = 1   ==  536870912 00000000000000000000000000000100
  5075.     vec($_,30, 1) = 1   == 1073741824 00000000000000000000000000000010
  5076.     vec($_,31, 1) = 1   == 2147483648 00000000000000000000000000000001
  5077.     vec($_, 0, 2) = 1   ==          1 10000000000000000000000000000000
  5078.     vec($_, 1, 2) = 1   ==          4 00100000000000000000000000000000
  5079.     vec($_, 2, 2) = 1   ==         16 00001000000000000000000000000000
  5080.     vec($_, 3, 2) = 1   ==         64 00000010000000000000000000000000
  5081.     vec($_, 4, 2) = 1   ==        256 00000000100000000000000000000000
  5082.     vec($_, 5, 2) = 1   ==       1024 00000000001000000000000000000000
  5083.     vec($_, 6, 2) = 1   ==       4096 00000000000010000000000000000000
  5084.     vec($_, 7, 2) = 1   ==      16384 00000000000000100000000000000000
  5085.     vec($_, 8, 2) = 1   ==      65536 00000000000000001000000000000000
  5086.     vec($_, 9, 2) = 1   ==     262144 00000000000000000010000000000000
  5087.     vec($_,10, 2) = 1   ==    1048576 00000000000000000000100000000000
  5088.     vec($_,11, 2) = 1   ==    4194304 00000000000000000000001000000000
  5089.     vec($_,12, 2) = 1   ==   16777216 00000000000000000000000010000000
  5090.     vec($_,13, 2) = 1   ==   67108864 00000000000000000000000000100000
  5091.     vec($_,14, 2) = 1   ==  268435456 00000000000000000000000000001000
  5092.     vec($_,15, 2) = 1   == 1073741824 00000000000000000000000000000010
  5093.     vec($_, 0, 2) = 2   ==          2 01000000000000000000000000000000
  5094.     vec($_, 1, 2) = 2   ==          8 00010000000000000000000000000000
  5095.     vec($_, 2, 2) = 2   ==         32 00000100000000000000000000000000
  5096.     vec($_, 3, 2) = 2   ==        128 00000001000000000000000000000000
  5097.     vec($_, 4, 2) = 2   ==        512 00000000010000000000000000000000
  5098.     vec($_, 5, 2) = 2   ==       2048 00000000000100000000000000000000
  5099.     vec($_, 6, 2) = 2   ==       8192 00000000000001000000000000000000
  5100.     vec($_, 7, 2) = 2   ==      32768 00000000000000010000000000000000
  5101.     vec($_, 8, 2) = 2   ==     131072 00000000000000000100000000000000
  5102.     vec($_, 9, 2) = 2   ==     524288 00000000000000000001000000000000
  5103.     vec($_,10, 2) = 2   ==    2097152 00000000000000000000010000000000
  5104.     vec($_,11, 2) = 2   ==    8388608 00000000000000000000000100000000
  5105.     vec($_,12, 2) = 2   ==   33554432 00000000000000000000000001000000
  5106.     vec($_,13, 2) = 2   ==  134217728 00000000000000000000000000010000
  5107.     vec($_,14, 2) = 2   ==  536870912 00000000000000000000000000000100
  5108.     vec($_,15, 2) = 2   == 2147483648 00000000000000000000000000000001
  5109.     vec($_, 0, 4) = 1   ==          1 10000000000000000000000000000000
  5110.     vec($_, 1, 4) = 1   ==         16 00001000000000000000000000000000
  5111.     vec($_, 2, 4) = 1   ==        256 00000000100000000000000000000000
  5112.     vec($_, 3, 4) = 1   ==       4096 00000000000010000000000000000000
  5113.     vec($_, 4, 4) = 1   ==      65536 00000000000000001000000000000000
  5114.     vec($_, 5, 4) = 1   ==    1048576 00000000000000000000100000000000
  5115.     vec($_, 6, 4) = 1   ==   16777216 00000000000000000000000010000000
  5116.     vec($_, 7, 4) = 1   ==  268435456 00000000000000000000000000001000
  5117.     vec($_, 0, 4) = 2   ==          2 01000000000000000000000000000000
  5118.     vec($_, 1, 4) = 2   ==         32 00000100000000000000000000000000
  5119.     vec($_, 2, 4) = 2   ==        512 00000000010000000000000000000000
  5120.     vec($_, 3, 4) = 2   ==       8192 00000000000001000000000000000000
  5121.     vec($_, 4, 4) = 2   ==     131072 00000000000000000100000000000000
  5122.     vec($_, 5, 4) = 2   ==    2097152 00000000000000000000010000000000
  5123.     vec($_, 6, 4) = 2   ==   33554432 00000000000000000000000001000000
  5124.     vec($_, 7, 4) = 2   ==  536870912 00000000000000000000000000000100
  5125.     vec($_, 0, 4) = 4   ==          4 00100000000000000000000000000000
  5126.     vec($_, 1, 4) = 4   ==         64 00000010000000000000000000000000
  5127.     vec($_, 2, 4) = 4   ==       1024 00000000001000000000000000000000
  5128.     vec($_, 3, 4) = 4   ==      16384 00000000000000100000000000000000
  5129.     vec($_, 4, 4) = 4   ==     262144 00000000000000000010000000000000
  5130.     vec($_, 5, 4) = 4   ==    4194304 00000000000000000000001000000000
  5131.     vec($_, 6, 4) = 4   ==   67108864 00000000000000000000000000100000
  5132.     vec($_, 7, 4) = 4   == 1073741824 00000000000000000000000000000010
  5133.     vec($_, 0, 4) = 8   ==          8 00010000000000000000000000000000
  5134.     vec($_, 1, 4) = 8   ==        128 00000001000000000000000000000000
  5135.     vec($_, 2, 4) = 8   ==       2048 00000000000100000000000000000000
  5136.     vec($_, 3, 4) = 8   ==      32768 00000000000000010000000000000000
  5137.     vec($_, 4, 4) = 8   ==     524288 00000000000000000001000000000000
  5138.     vec($_, 5, 4) = 8   ==    8388608 00000000000000000000000100000000
  5139.     vec($_, 6, 4) = 8   ==  134217728 00000000000000000000000000010000
  5140.     vec($_, 7, 4) = 8   == 2147483648 00000000000000000000000000000001
  5141.     vec($_, 0, 8) = 1   ==          1 10000000000000000000000000000000
  5142.     vec($_, 1, 8) = 1   ==        256 00000000100000000000000000000000
  5143.     vec($_, 2, 8) = 1   ==      65536 00000000000000001000000000000000
  5144.     vec($_, 3, 8) = 1   ==   16777216 00000000000000000000000010000000
  5145.     vec($_, 0, 8) = 2   ==          2 01000000000000000000000000000000
  5146.     vec($_, 1, 8) = 2   ==        512 00000000010000000000000000000000
  5147.     vec($_, 2, 8) = 2   ==     131072 00000000000000000100000000000000
  5148.     vec($_, 3, 8) = 2   ==   33554432 00000000000000000000000001000000
  5149.     vec($_, 0, 8) = 4   ==          4 00100000000000000000000000000000
  5150.     vec($_, 1, 8) = 4   ==       1024 00000000001000000000000000000000
  5151.     vec($_, 2, 8) = 4   ==     262144 00000000000000000010000000000000
  5152.     vec($_, 3, 8) = 4   ==   67108864 00000000000000000000000000100000
  5153.     vec($_, 0, 8) = 8   ==          8 00010000000000000000000000000000
  5154.     vec($_, 1, 8) = 8   ==       2048 00000000000100000000000000000000
  5155.     vec($_, 2, 8) = 8   ==     524288 00000000000000000001000000000000
  5156.     vec($_, 3, 8) = 8   ==  134217728 00000000000000000000000000010000
  5157.     vec($_, 0, 8) = 16  ==         16 00001000000000000000000000000000
  5158.     vec($_, 1, 8) = 16  ==       4096 00000000000010000000000000000000
  5159.     vec($_, 2, 8) = 16  ==    1048576 00000000000000000000100000000000
  5160.     vec($_, 3, 8) = 16  ==  268435456 00000000000000000000000000001000
  5161.     vec($_, 0, 8) = 32  ==         32 00000100000000000000000000000000
  5162.     vec($_, 1, 8) = 32  ==       8192 00000000000001000000000000000000
  5163.     vec($_, 2, 8) = 32  ==    2097152 00000000000000000000010000000000
  5164.     vec($_, 3, 8) = 32  ==  536870912 00000000000000000000000000000100
  5165.     vec($_, 0, 8) = 64  ==         64 00000010000000000000000000000000
  5166.     vec($_, 1, 8) = 64  ==      16384 00000000000000100000000000000000
  5167.     vec($_, 2, 8) = 64  ==    4194304 00000000000000000000001000000000
  5168.     vec($_, 3, 8) = 64  == 1073741824 00000000000000000000000000000010
  5169.     vec($_, 0, 8) = 128 ==        128 00000001000000000000000000000000
  5170.     vec($_, 1, 8) = 128 ==      32768 00000000000000010000000000000000
  5171.     vec($_, 2, 8) = 128 ==    8388608 00000000000000000000000100000000
  5172.     vec($_, 3, 8) = 128 == 2147483648 00000000000000000000000000000001</PRE>
  5173. <P></P>
  5174. <DT><STRONG><A NAME="item_wait">wait</A></STRONG><BR>
  5175. <DD>
  5176. Behaves like the <A HREF="#item_wait"><CODE>wait(2)</CODE></A> system call on your system: it waits for a child
  5177. process to terminate and returns the pid of the deceased process, or
  5178. <CODE>-1</CODE> if there are no child processes.  The status is returned in <CODE>$?</CODE>.
  5179. Note that a return value of <CODE>-1</CODE> could mean that child processes are
  5180. being automatically reaped, as described in <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A>.
  5181. <P></P>
  5182. <DT><STRONG><A NAME="item_waitpid">waitpid PID,FLAGS</A></STRONG><BR>
  5183. <DD>
  5184. Waits for a particular child process to terminate and returns the pid of
  5185. the deceased process, or <CODE>-1</CODE> if there is no such child process.  On some
  5186. systems, a value of 0 indicates that there are processes still running.
  5187. The status is returned in <CODE>$?</CODE>.  If you say
  5188. <PRE>
  5189.     use POSIX ":sys_wait_h";
  5190.     #...
  5191.     do { 
  5192.         $kid = waitpid(-1,&WNOHANG);
  5193.     } until $kid == -1;</PRE>
  5194. <P>then you can do a non-blocking wait for all pending zombie processes.
  5195. Non-blocking wait is available on machines supporting either the
  5196. <A HREF="#item_waitpid"><CODE>waitpid(2)</CODE></A> or <CODE>wait4(2)</CODE> system calls.  However, waiting for a particular
  5197. pid with FLAGS of <CODE>0</CODE> is implemented everywhere.  (Perl emulates the
  5198. system call by remembering the status values of processes that have
  5199. exited but have not been harvested by the Perl script yet.)</P>
  5200. <P>Note that on some systems, a return value of <CODE>-1</CODE> could mean that child
  5201. processes are being automatically reaped.  See <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A> for details,
  5202. and for other examples.</P>
  5203. <P></P>
  5204. <DT><STRONG><A NAME="item_wantarray">wantarray</A></STRONG><BR>
  5205. <DD>
  5206. Returns true if the context of the currently executing subroutine is
  5207. looking for a list value.  Returns false if the context is looking
  5208. for a scalar.  Returns the undefined value if the context is looking
  5209. for no value (void context).
  5210. <PRE>
  5211.     return unless defined wantarray;    # don't bother doing more
  5212.     my @a = complex_calculation();
  5213.     return wantarray ? @a : "@a";</PRE>
  5214. <P>This function should have been named <CODE>wantlist()</CODE> instead.</P>
  5215. <P></P>
  5216. <DT><STRONG><A NAME="item_warn">warn LIST</A></STRONG><BR>
  5217. <DD>
  5218. Produces a message on STDERR just like <A HREF="#item_die"><CODE>die</CODE></A>, but doesn't exit or throw
  5219. an exception.
  5220. <P>If LIST is empty and <CODE>$@</CODE> already contains a value (typically from a
  5221. previous eval) that value is used after appending <CODE>"\t...caught"</CODE>
  5222. to <CODE>$@</CODE>.  This is useful for staying almost, but not entirely similar to
  5223. <A HREF="#item_die"><CODE>die</CODE></A>.</P>
  5224. <P>If <CODE>$@</CODE> is empty then the string <CODE>"Warning: Something's wrong"</CODE> is used.</P>
  5225. <P>No message is printed if there is a <CODE>$SIG{__WARN__}</CODE> handler
  5226. installed.  It is the handler's responsibility to deal with the message
  5227. as it sees fit (like, for instance, converting it into a <A HREF="#item_die"><CODE>die</CODE></A>).  Most
  5228. handlers must therefore make arrangements to actually display the
  5229. warnings that they are not prepared to deal with, by calling <A HREF="#item_warn"><CODE>warn</CODE></A>
  5230. again in the handler.  Note that this is quite safe and will not
  5231. produce an endless loop, since <CODE>__WARN__</CODE> hooks are not called from
  5232. inside one.</P>
  5233. <P>You will find this behavior is slightly different from that of
  5234. <CODE>$SIG{__DIE__}</CODE> handlers (which don't suppress the error text, but can
  5235. instead call <A HREF="#item_die"><CODE>die</CODE></A> again to change it).</P>
  5236. <P>Using a <CODE>__WARN__</CODE> handler provides a powerful way to silence all
  5237. warnings (even the so-called mandatory ones).  An example:</P>
  5238. <PRE>
  5239.     # wipe out *all* compile-time warnings
  5240.     BEGIN { $SIG{'__WARN__'} = sub { warn $_[0] if $DOWARN } }
  5241.     my $foo = 10;
  5242.     my $foo = 20;          # no warning about duplicate my $foo,
  5243.                            # but hey, you asked for it!
  5244.     # no compile-time or run-time warnings before here
  5245.     $DOWARN = 1;</PRE>
  5246. <PRE>
  5247.     # run-time warnings enabled after here
  5248.     warn "\$foo is alive and $foo!";     # does show up</PRE>
  5249. <P>See <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A> for details on setting <CODE>%SIG</CODE> entries, and for more
  5250. examples.  See the Carp module for other kinds of warnings using its
  5251. <CODE>carp()</CODE> and <CODE>cluck()</CODE> functions.</P>
  5252. <P></P>
  5253. <DT><STRONG><A NAME="item_write">write FILEHANDLE</A></STRONG><BR>
  5254. <DD>
  5255. <DT><STRONG>write EXPR</STRONG><BR>
  5256. <DD>
  5257. <DT><STRONG>write</STRONG><BR>
  5258. <DD>
  5259. Writes a formatted record (possibly multi-line) to the specified FILEHANDLE,
  5260. using the format associated with that file.  By default the format for
  5261. a file is the one having the same name as the filehandle, but the
  5262. format for the current output channel (see the <A HREF="#item_select"><CODE>select</CODE></A> function) may be set
  5263. explicitly by assigning the name of the format to the <CODE>$~</CODE> variable.
  5264. <P>Top of form processing is handled automatically:  if there is
  5265. insufficient room on the current page for the formatted record, the
  5266. page is advanced by writing a form feed, a special top-of-page format
  5267. is used to format the new page header, and then the record is written.
  5268. By default the top-of-page format is the name of the filehandle with
  5269. ``_TOP'' appended, but it may be dynamically set to the format of your
  5270. choice by assigning the name to the <CODE>$^</CODE> variable while the filehandle is
  5271. selected.  The number of lines remaining on the current page is in
  5272. variable <CODE>$-</CODE>, which can be set to <CODE>0</CODE> to force a new page.</P>
  5273. <P>If FILEHANDLE is unspecified, output goes to the current default output
  5274. channel, which starts out as STDOUT but may be changed by the
  5275. <A HREF="#item_select"><CODE>select</CODE></A> operator.  If the FILEHANDLE is an EXPR, then the expression
  5276. is evaluated and the resulting string is used to look up the name of
  5277. the FILEHANDLE at run time.  For more on formats, see <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.</P>
  5278. <P>Note that write is <EM>not</EM> the opposite of <A HREF="#item_read"><CODE>read</CODE></A>.  Unfortunately.</P>
  5279. <P></P>
  5280. <DT><STRONG><A NAME="item_y/">y///</A></STRONG><BR>
  5281. <DD>
  5282. The transliteration operator.  Same as <A HREF="#item_tr/"><CODE>tr///</CODE></A>.  See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  5283. <P></P></DL>
  5284. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  5285. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  5286. <STRONG><P CLASS=block> perlfunc - Perl builtin functions</P></STRONG>
  5287. </TD></TR>
  5288. </TABLE>
  5289.  
  5290. </BODY>
  5291.  
  5292. </HTML>
  5293.