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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlport - Writing portable Perl</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> perlport - Writing portable Perl</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.     <LI><A HREF="#issues">ISSUES</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#newlines">Newlines</A></LI>
  26.         <LI><A HREF="#numbers endianness and width">Numbers endianness and Width</A></LI>
  27.         <LI><A HREF="#files and filesystems">Files and Filesystems</A></LI>
  28.         <LI><A HREF="#system interaction">System Interaction</A></LI>
  29.         <LI><A HREF="#interprocess communication (ipc)">Interprocess Communication (IPC)</A></LI>
  30.         <LI><A HREF="#external subroutines (xs)">External Subroutines (XS)</A></LI>
  31.         <LI><A HREF="#standard modules">Standard Modules</A></LI>
  32.         <LI><A HREF="#time and date">Time and Date</A></LI>
  33.         <LI><A HREF="#character sets and character encoding">Character sets and character encoding</A></LI>
  34.         <LI><A HREF="#internationalisation">Internationalisation</A></LI>
  35.         <LI><A HREF="#system resources">System Resources</A></LI>
  36.         <LI><A HREF="#security">Security</A></LI>
  37.         <LI><A HREF="#style">Style</A></LI>
  38.     </UL>
  39.  
  40.     <LI><A HREF="#cpan testers">CPAN Testers</A></LI>
  41.     <LI><A HREF="#platforms">PLATFORMS</A></LI>
  42.     <UL>
  43.  
  44.         <LI><A HREF="#unix">Unix</A></LI>
  45.         <LI><A HREF="#dos and derivatives">DOS and Derivatives</A></LI>
  46.         <LI><A HREF="#mac os">Mac OS</A></LI>
  47.         <LI><A HREF="#vms">VMS</A></LI>
  48.         <LI><A HREF="#vos">VOS</A></LI>
  49.         <LI><A HREF="#ebcdic platforms">EBCDIC Platforms</A></LI>
  50.         <LI><A HREF="#acorn risc os">Acorn RISC OS</A></LI>
  51.         <LI><A HREF="#other perls">Other perls</A></LI>
  52.     </UL>
  53.  
  54.     <LI><A HREF="#function implementations">FUNCTION IMPLEMENTATIONS</A></LI>
  55.     <UL>
  56.  
  57.         <LI><A HREF="#alphabetical listing of perl functions">Alphabetical Listing of Perl Functions</A></LI>
  58.     </UL>
  59.  
  60.     <LI><A HREF="#changes">CHANGES</A></LI>
  61.     <LI><A HREF="#supported platforms">Supported Platforms</A></LI>
  62.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  63.     <LI><A HREF="#authors / contributors">AUTHORS / CONTRIBUTORS</A></LI>
  64.     <LI><A HREF="#version">VERSION</A></LI>
  65. </UL>
  66. <!-- INDEX END -->
  67.  
  68. <HR>
  69. <P>
  70. <H1><A NAME="name">NAME</A></H1>
  71. <P>perlport - Writing portable Perl</P>
  72. <P>
  73. <HR>
  74. <H1><A NAME="description">DESCRIPTION</A></H1>
  75. <P>Perl runs on numerous operating systems.  While most of them share
  76. much in common, they also have their own unique features.</P>
  77. <P>This document is meant to help you to find out what constitutes portable
  78. Perl code.  That way once you make a decision to write portably,
  79. you know where the lines are drawn, and you can stay within them.</P>
  80. <P>There is a tradeoff between taking full advantage of one particular
  81. type of computer and taking advantage of a full range of them.
  82. Naturally, as you broaden your range and become more diverse, the
  83. common factors drop, and you are left with an increasingly smaller
  84. area of common ground in which you can operate to accomplish a
  85. particular task.  Thus, when you begin attacking a problem, it is
  86. important to consider under which part of the tradeoff curve you
  87. want to operate.  Specifically, you must decide whether it is
  88. important that the task that you are coding have the full generality
  89. of being portable, or whether to just get the job done right now.
  90. This is the hardest choice to be made.  The rest is easy, because
  91. Perl provides many choices, whichever way you want to approach your
  92. problem.</P>
  93. <P>Looking at it another way, writing portable code is usually about
  94. willfully limiting your available choices.  Naturally, it takes
  95. discipline and sacrifice to do that.  The product of portability
  96. and convenience may be a constant.  You have been warned.</P>
  97. <P>Be aware of two important points:</P>
  98. <DL>
  99. <DT><STRONG><A NAME="item_Not_all_Perl_programs_have_to_be_portable">Not all Perl programs have to be portable</A></STRONG><BR>
  100. <DD>
  101. There is no reason you should not use Perl as a language to glue Unix
  102. tools together, or to prototype a Macintosh application, or to manage the
  103. Windows registry.  If it makes no sense to aim for portability for one
  104. reason or another in a given program, then don't bother.
  105. <P></P>
  106. <DT><STRONG><A NAME="item_Nearly_all_of_Perl_already_is_portable">Nearly all of Perl already <EM>is</EM> portable</A></STRONG><BR>
  107. <DD>
  108. Don't be fooled into thinking that it is hard to create portable Perl
  109. code.  It isn't.  Perl tries its level-best to bridge the gaps between
  110. what's available on different platforms, and all the means available to
  111. use those features.  Thus almost all Perl code runs on any machine
  112. without modification.  But there are some significant issues in
  113. writing portable code, and this document is entirely about those issues.
  114. <P></P></DL>
  115. <P>Here's the general rule: When you approach a task commonly done
  116. using a whole range of platforms, think about writing portable
  117. code.  That way, you don't sacrifice much by way of the implementation
  118. choices you can avail yourself of, and at the same time you can give
  119. your users lots of platform choices.  On the other hand, when you have to
  120. take advantage of some unique feature of a particular platform, as is
  121. often the case with systems programming (whether for Unix, Windows,
  122. Mac OS, VMS, etc.), consider writing platform-specific code.</P>
  123. <P>When the code will run on only two or three operating systems, you
  124. may need to consider only the differences of those particular systems.
  125. The important thing is to decide where the code will run and to be
  126. deliberate in your decision.</P>
  127. <P>The material below is separated into three main sections: main issues of
  128. portability (<A HREF="#issues">ISSUES</A>, platform-specific issues (<A HREF="#platforms">PLATFORMS</A>, and
  129. built-in perl functions that behave differently on various ports
  130. (<A HREF="#function implementations">FUNCTION IMPLEMENTATIONS</A>.</P>
  131. <P>This information should not be considered complete; it includes possibly
  132. transient information about idiosyncrasies of some of the ports, almost
  133. all of which are in a state of constant evolution.  Thus, this material
  134. should be considered a perpetual work in progress
  135. (<IMG SRC=``yellow_sign.gif'' ALT=``Under Construction''>).</P>
  136. <P>
  137. <HR>
  138. <H1><A NAME="issues">ISSUES</A></H1>
  139. <P>
  140. <H2><A NAME="newlines">Newlines</A></H2>
  141. <P>In most operating systems, lines in files are terminated by newlines.
  142. Just what is used as a newline may vary from OS to OS.  Unix
  143. traditionally uses <CODE>\012</CODE>, one type of DOSish I/O uses <CODE>\015\012</CODE>,
  144. and Mac OS uses <CODE>\015</CODE>.</P>
  145. <P>Perl uses <CODE>\n</CODE> to represent the ``logical'' newline, where what is
  146. logical may depend on the platform in use.  In MacPerl, <CODE>\n</CODE> always
  147. means <CODE>\015</CODE>.  In DOSish perls, <CODE>\n</CODE> usually means <CODE>\012</CODE>, but
  148. when accessing a file in ``text'' mode, STDIO translates it to (or
  149. from) <CODE>\015\012</CODE>, depending on whether you're reading or writing.
  150. Unix does the same thing on ttys in canonical mode.  <CODE>\015\012</CODE>
  151. is commonly referred to as CRLF.</P>
  152. <P>Because of the ``text'' mode translation, DOSish perls have limitations
  153. in using <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> on a file accessed in ``text'' mode.
  154. Stick to <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A>-ing to locations you got from <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> (and no
  155. others), and you are usually free to use <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> even
  156. in ``text'' mode.  Using <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> or other file operations
  157. may be non-portable.  If you use <A HREF="#item_binmode"><CODE>binmode</CODE></A> on a file, however, you
  158. can usually <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> with arbitrary values in safety.</P>
  159. <P>A common misconception in socket programming is that <CODE>\n</CODE> eq <CODE>\012</CODE>
  160. everywhere.  When using protocols such as common Internet protocols,
  161. <CODE>\012</CODE> and <CODE>\015</CODE> are called for specifically, and the values of
  162. the logical <CODE>\n</CODE> and <CODE>\r</CODE> (carriage return) are not reliable.</P>
  163. <PRE>
  164.     print SOCKET "Hi there, client!\r\n";      # WRONG
  165.     print SOCKET "Hi there, client!\015\012";  # RIGHT</PRE>
  166. <P>However, using <CODE>\015\012</CODE> (or <CODE>\cM\cJ</CODE>, or <CODE>\x0D\x0A</CODE>) can be tedious
  167. and unsightly, as well as confusing to those maintaining the code.  As
  168. such, the Socket module supplies the Right Thing for those who want it.</P>
  169. <PRE>
  170.     use Socket qw(:DEFAULT :crlf);
  171.     print SOCKET "Hi there, client!$CRLF"      # RIGHT</PRE>
  172. <P>When reading from a socket, remember that the default input record
  173. separator <CODE>$/</CODE> is <CODE>\n</CODE>, but robust socket code will recognize as
  174. either <CODE>\012</CODE> or <CODE>\015\012</CODE> as end of line:</P>
  175. <PRE>
  176.     while (<SOCKET>) {
  177.         # ...
  178.     }</PRE>
  179. <P>Because both CRLF and LF end in LF, the input record separator can
  180. be set to LF and any CR stripped later.  Better to write:</P>
  181. <PRE>
  182.     use Socket qw(:DEFAULT :crlf);
  183.     local($/) = LF;      # not needed if $/ is already \012</PRE>
  184. <PRE>
  185.     while (<SOCKET>) {
  186.         s/$CR?$LF/\n/;   # not sure if socket uses LF or CRLF, OK
  187.     #   s/\015?\012/\n/; # same thing
  188.     }</PRE>
  189. <P>This example is preferred over the previous one--even for Unix
  190. platforms--because now any <CODE>\015</CODE>'s (<CODE>\cM</CODE>'s) are stripped out
  191. (and there was much rejoicing).</P>
  192. <P>Similarly, functions that return text data--such as a function that
  193. fetches a web page--should sometimes translate newlines before
  194. returning the data, if they've not yet been translated to the local
  195. newline representation.  A single line of code will often suffice:</P>
  196. <PRE>
  197.     $data =~ s/\015?\012/\n/g;
  198.     return $data;</PRE>
  199. <P>Some of this may be confusing.  Here's a handy reference to the ASCII CR
  200. and LF characters.  You can print it out and stick it in your wallet.</P>
  201. <PRE>
  202.     LF  ==  \012  ==  \x0A  ==  \cJ  ==  ASCII 10
  203.     CR  ==  \015  ==  \x0D  ==  \cM  ==  ASCII 13</PRE>
  204. <PRE>
  205.              | Unix | DOS  | Mac  |
  206.         ---------------------------
  207.         \n   |  LF  |  LF  |  CR  |
  208.         \r   |  CR  |  CR  |  LF  |
  209.         \n * |  LF  | CRLF |  CR  |
  210.         \r * |  CR  |  CR  |  LF  |
  211.         ---------------------------
  212.         * text-mode STDIO</PRE>
  213. <P>The Unix column assumes that you are not accessing a serial line
  214. (like a tty) in canonical mode.  If you are, then CR on input becomes
  215. ``\n'', and ``\n'' on output becomes CRLF.</P>
  216. <P>These are just the most common definitions of <CODE>\n</CODE> and <CODE>\r</CODE> in Perl.
  217. There may well be others.</P>
  218. <P>
  219. <H2><A NAME="numbers endianness and width">Numbers endianness and Width</A></H2>
  220. <P>Different CPUs store integers and floating point numbers in different
  221. orders (called <EM>endianness</EM>) and widths (32-bit and 64-bit being the
  222. most common today).  This affects your programs when they attempt to transfer
  223. numbers in binary format from one CPU architecture to another,
  224. usually either ``live'' via network connection, or by storing the
  225. numbers to secondary storage such as a disk file or tape.</P>
  226. <P>Conflicting storage orders make utter mess out of the numbers.  If a
  227. little-endian host (Intel, VAX) stores 0x12345678 (305419896 in
  228. decimal), a big-endian host (Motorola, MIPS, Sparc, PA) reads it as
  229. 0x78563412 (2018915346 in decimal).  To avoid this problem in network
  230. (socket) connections use the <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack</CODE></A> formats <CODE>n</CODE>
  231. and <CODE>N</CODE>, the ``network'' orders.  These are guaranteed to be portable.</P>
  232. <P>You can explore the endianness of your platform by unpacking a
  233. data structure packed in native format such as:</P>
  234. <PRE>
  235.     print unpack("h*", pack("s2", 1, 2)), "\n";
  236.     # '10002000' on e.g. Intel x86 or Alpha 21064 in little-endian mode
  237.     # '00100020' on e.g. Motorola 68040</PRE>
  238. <P>If you need to distinguish between endian architectures you could use
  239. either of the variables set like so:</P>
  240. <PRE>
  241.     $is_big_endian   = unpack("h*", pack("s", 1)) =~ /01/;
  242.     $is_litte_endian = unpack("h*", pack("s", 1)) =~ /^1/;</PRE>
  243. <P>Differing widths can cause truncation even between platforms of equal
  244. endianness.  The platform of shorter width loses the upper parts of the
  245. number.  There is no good solution for this problem except to avoid
  246. transferring or storing raw binary numbers.</P>
  247. <P>One can circumnavigate both these problems in two ways.  Either
  248. transfer and store numbers always in text format, instead of raw
  249. binary, or else consider using modules like Data::Dumper (included in
  250. the standard distribution as of Perl 5.005) and Storable.  Keeping
  251. all data as text significantly simplifies matters.</P>
  252. <P>
  253. <H2><A NAME="files and filesystems">Files and Filesystems</A></H2>
  254. <P>Most platforms these days structure files in a hierarchical fashion.
  255. So, it is reasonably safe to assume that all platforms support the
  256. notion of a ``path'' to uniquely identify a file on the system.  How
  257. that path is really written, though, differs considerably.</P>
  258. <P>Atlhough similar, file path specifications differ between Unix,
  259. Windows, Mac OS, OS/2, VMS, VOS, RISC OS, and probably others.
  260. Unix, for example, is one of the few OSes that has the elegant idea
  261. of a single root directory.</P>
  262. <P>DOS, OS/2, VMS, VOS, and Windows can work similarly to Unix with <CODE>/</CODE>
  263. as path separator, or in their own idiosyncratic ways (such as having
  264. several root directories and various ``unrooted'' device files such NIL:
  265. and LPT:).</P>
  266. <P>Mac OS uses <CODE>:</CODE> as a path separator instead of <CODE>/</CODE>.</P>
  267. <P>The filesystem may support neither hard links (<A HREF="#item_link"><CODE>link</CODE></A>) nor
  268. symbolic links (<A HREF="#item_symlink"><CODE>symlink</CODE></A>, <A HREF="#item_readlink"><CODE>readlink</CODE></A>, <A HREF="#item_lstat"><CODE>lstat</CODE></A>).</P>
  269. <P>The filesystem may support neither access timestamp nor change
  270. timestamp (meaning that about the only portable timestamp is the
  271. modification timestamp), or one second granularity of any timestamps
  272. (e.g. the FAT filesystem limits the time granularity to two seconds).</P>
  273. <P>VOS perl can emulate Unix filenames with <CODE>/</CODE> as path separator.  The
  274. native pathname characters greater-than, less-than, number-sign, and
  275. percent-sign are always accepted.</P>
  276. <P>RISC OS perl can emulate Unix filenames with <CODE>/</CODE> as path
  277. separator, or go native and use <CODE>.</CODE> for path separator and <CODE>:</CODE> to
  278. signal filesystems and disk names.</P>
  279. <P>If all this is intimidating, have no (well, maybe only a little)
  280. fear.  There are modules that can help.  The File::Spec modules
  281. provide methods to do the Right Thing on whatever platform happens
  282. to be running the program.</P>
  283. <PRE>
  284.     use File::Spec::Functions;
  285.     chdir(updir());        # go up one directory
  286.     $file = catfile(curdir(), 'temp', 'file.txt');
  287.     # on Unix and Win32, './temp/file.txt'
  288.     # on Mac OS, ':temp:file.txt'
  289.     # on VMS, '[.temp]file.txt'</PRE>
  290. <P>File::Spec is available in the standard distribution as of version
  291. 5.004_05.  File::Spec::Functions is only in File::Spec 0.7 and later,
  292. and some versions of perl come with version 0.6.  If File::Spec
  293. is not updated to 0.7 or later, you must use the object-oriented
  294. interface from File::Spec (or upgrade File::Spec).</P>
  295. <P>In general, production code should not have file paths hardcoded.
  296. Making them user-supplied or read from a configuration file is
  297. better, keeping in mind that file path syntax varies on different
  298. machines.</P>
  299. <P>This is especially noticeable in scripts like Makefiles and test suites,
  300. which often assume <CODE>/</CODE> as a path separator for subdirectories.</P>
  301. <P>Also of use is File::Basename from the standard distribution, which
  302. splits a pathname into pieces (base filename, full path to directory,
  303. and file suffix).</P>
  304. <P>Even when on a single platform (if you can call Unix a single platform),
  305. remember not to count on the existence or the contents of particular
  306. system-specific files or directories, like <EM>/etc/passwd</EM>,
  307. <EM>/etc/sendmail.conf</EM>, <EM>/etc/resolv.conf</EM>, or even <EM>/tmp/</EM>.  For
  308. example, <EM>/etc/passwd</EM> may exist but not contain the encrypted
  309. passwords, because the system is using some form of enhanced security.
  310. Or it may not contain all the accounts, because the system is using NIS. 
  311. If code does need to rely on such a file, include a description of the
  312. file and its format in the code's documentation, then make it easy for
  313. the user to override the default location of the file.</P>
  314. <P>Don't assume a text file will end with a newline.  They should,
  315. but people forget.</P>
  316. <P>Do not have two files of the same name with different case, like
  317. <EM>test.pl</EM> and <EM>Test.pl</EM>, as many platforms have case-insensitive
  318. filenames.  Also, try not to have non-word characters (except for <CODE>.</CODE>)
  319. in the names, and keep them to the 8.3 convention, for maximum
  320. portability, onerous a burden though this may appear.</P>
  321. <P>Likewise, when using the AutoSplit module, try to keep your functions to
  322. 8.3 naming and case-insensitive conventions; or, at the least,
  323. make it so the resulting files have a unique (case-insensitively)
  324. first 8 characters.</P>
  325. <P>Whitespace in filenames is tolerated on most systems, but not all.
  326. Many systems (DOS, VMS) cannot have more than one <CODE>.</CODE> in their filenames.</P>
  327. <P>Don't assume <CODE>></CODE> won't be the first character of a filename.
  328. Always use <CODE><</CODE> explicitly to open a file for reading,
  329. unless you want the user to be able to specify a pipe open.</P>
  330. <PRE>
  331.     open(FILE, "< $existing_file") or die $!;</PRE>
  332. <P>If filenames might use strange characters, it is safest to open it
  333. with <A HREF="#item_sysopen"><CODE>sysopen</CODE></A> instead of <A HREF="#item_open"><CODE>open</CODE></A>.  <A HREF="#item_open"><CODE>open</CODE></A> is magic and can
  334. translate characters like <CODE>></CODE>, <CODE><</CODE>, and <CODE>|</CODE>, which may
  335. be the wrong thing to do.  (Sometimes, though, it's the right thing.)</P>
  336. <P>
  337. <H2><A NAME="system interaction">System Interaction</A></H2>
  338. <P>Not all platforms provide a command line.  These are usually platforms
  339. that rely primarily on a Graphical User Interface (GUI) for user
  340. interaction.  A program requiring a command line interface might
  341. not work everywhere.  This is probably for the user of the program
  342. to deal with, so don't stay up late worrying about it.</P>
  343. <P>Some platforms can't delete or rename files held open by the system.
  344. Remember to <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A> files when you are done with them.  Don't
  345. <A HREF="../../lib/Pod/perlfunc.html#item_unlink"><CODE>unlink</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_rename"><CODE>rename</CODE></A> an open file.  Don't <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie</CODE></A> or <A HREF="#item_open"><CODE>open</CODE></A> a
  346. file already tied or opened; <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A> it first.</P>
  347. <P>Don't open the same file more than once at a time for writing, as some
  348. operating systems put mandatory locks on such files.</P>
  349. <P>Don't count on a specific environment variable existing in <CODE>%ENV</CODE>.
  350. Don't count on <CODE>%ENV</CODE> entries being case-sensitive, or even
  351. case-preserving.</P>
  352. <P>Don't count on signals or <CODE>%SIG</CODE> for anything.</P>
  353. <P>Don't count on filename globbing.  Use <A HREF="../../lib/Pod/perlfunc.html#item_opendir"><CODE>opendir</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A>, and
  354. <A HREF="../../lib/Pod/perlfunc.html#item_closedir"><CODE>closedir</CODE></A> instead.</P>
  355. <P>Don't count on per-program environment variables, or per-program current
  356. directories.</P>
  357. <P>Don't count on specific values of <CODE>$!</CODE>.</P>
  358. <P>
  359. <H2><A NAME="interprocess communication (ipc)">Interprocess Communication (IPC)</A></H2>
  360. <P>In general, don't directly access the system in code meant to be
  361. portable.  That means, no <A HREF="#item_system"><CODE>system</CODE></A>, <A HREF="#item_exec"><CODE>exec</CODE></A>, <A HREF="#item_fork"><CODE>fork</CODE></A>, <A HREF="#item_pipe"><CODE>pipe</CODE></A>,
  362. <CODE>``</CODE>, <CODE>qx//</CODE>, <A HREF="#item_open"><CODE>open</CODE></A> with a <CODE>|</CODE>, nor any of the other things
  363. that makes being a perl hacker worth being.</P>
  364. <P>Commands that launch external processes are generally supported on
  365. most platforms (though many of them do not support any type of
  366. forking).  The problem with using them arises from what you invoke
  367. them on.  External tools are often named differently on different
  368. platforms, may not be available in the same location, migth accept
  369. different arguments, can behave differently, and often present their
  370. results in a platform-dependent way.  Thus, you should seldom depend
  371. on them to produce consistent results. (Then again, if you're calling 
  372. <EM>netstat -a</EM>, you probably don't expect it to run on both Unix and CP/M.)</P>
  373. <P>One especially common bit of Perl code is opening a pipe to <STRONG>sendmail</STRONG>:</P>
  374. <PRE>
  375.     open(MAIL, '|/usr/lib/sendmail -t') 
  376.         or die "cannot fork sendmail: $!";</PRE>
  377. <P>This is fine for systems programming when sendmail is known to be
  378. available.  But it is not fine for many non-Unix systems, and even
  379. some Unix systems that may not have sendmail installed.  If a portable
  380. solution is needed, see the various distributions on CPAN that deal
  381. with it.  Mail::Mailer and Mail::Send in the MailTools distribution are
  382. commonly used, and provide several mailing methods, including mail,
  383. sendmail, and direct SMTP (via Net::SMTP) if a mail transfer agent is
  384. not available.  Mail::Sendmail is a standalone module that provides
  385. simple, platform-independent mailing.</P>
  386. <P>The Unix System V IPC (<CODE>msg*(), sem*(), shm*()</CODE>) is not available
  387. even on all Unix platforms.</P>
  388. <P>The rule of thumb for portable code is: Do it all in portable Perl, or
  389. use a module (that may internally implement it with platform-specific
  390. code, but expose a common interface).</P>
  391. <P>
  392. <H2><A NAME="external subroutines (xs)">External Subroutines (XS)</A></H2>
  393. <P>XS code can usually be made to work with any platform, but dependent
  394. libraries, header files, etc., might not be readily available or
  395. portable, or the XS code itself might be platform-specific, just as Perl
  396. code might be.  If the libraries and headers are portable, then it is
  397. normally reasonable to make sure the XS code is portable, too.</P>
  398. <P>A different type of portability issue arises when writing XS code:
  399. availability of a C compiler on the end-user's system.  C brings
  400. with it its own portability issues, and writing XS code will expose
  401. you to some of those.  Writing purely in Perl is an easier way to
  402. achieve portability.</P>
  403. <P>
  404. <H2><A NAME="standard modules">Standard Modules</A></H2>
  405. <P>In general, the standard modules work across platforms.  Notable
  406. exceptions are the CPAN module (which currently makes connections to external
  407. programs that may not be available), platform-specific modules (like
  408. ExtUtils::MM_VMS), and DBM modules.</P>
  409. <P>There is no one DBM module available on all platforms.
  410. SDBM_File and the others are generally available on all Unix and DOSish
  411. ports, but not in MacPerl, where only NBDM_File and DB_File are
  412. available.</P>
  413. <P>The good news is that at least some DBM module should be available, and
  414. AnyDBM_File will use whichever module it can find.  Of course, then
  415. the code needs to be fairly strict, dropping to the greatest common
  416. factor (e.g., not exceeding 1K for each record), so that it will
  417. work with any DBM module.  See <A HREF="../../lib/AnyDBM_File.html">the AnyDBM_File manpage</A> for more details.</P>
  418. <P>
  419. <H2><A NAME="time and date">Time and Date</A></H2>
  420. <P>The system's notion of time of day and calendar date is controlled in
  421. widely different ways.  Don't assume the timezone is stored in <CODE>$ENV{TZ}</CODE>,
  422. and even if it is, don't assume that you can control the timezone through
  423. that variable.</P>
  424. <P>Don't assume that the epoch starts at 00:00:00, January 1, 1970,
  425. because that is OS- and implementation-specific.  It is better to store a date
  426. in an unambiguous representation.  The ISO-8601 standard defines
  427. ``YYYY-MM-DD'' as the date format.  A text representation (like ``1987-12-18'')
  428. can be easily converted into an OS-specific value using a module like
  429. Date::Parse.  An array of values, such as those returned by
  430. <A HREF="../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime</CODE></A>, can be converted to an OS-specific representation using
  431. Time::Local.</P>
  432. <P>When calculating specific times, such as for tests in time or date modules,
  433. it may be appropriate to calculate an offset for the epoch.</P>
  434. <PRE>
  435.     require Time::Local;
  436.     $offset = Time::Local::timegm(0, 0, 0, 1, 0, 70);</PRE>
  437. <P>The value for <CODE>$offset</CODE> in Unix will be <CODE>0</CODE>, but in Mac OS will be
  438. some large number.  <CODE>$offset</CODE> can then be added to a Unix time value
  439. to get what should be the proper value on any system.</P>
  440. <P>
  441. <H2><A NAME="character sets and character encoding">Character sets and character encoding</A></H2>
  442. <P>Assume little about character sets.  Assume nothing about
  443. numerical values (<A HREF="../../lib/Pod/perlfunc.html#item_ord"><CODE>ord</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_chr"><CODE>chr</CODE></A>) of characters.  Do not
  444. assume that the alphabetic characters are encoded contiguously (in
  445. the numeric sense).  Do not assume anything about the ordering of the
  446. characters.  The lowercase letters may come before or after the
  447. uppercase letters; the lowercase and uppercase may be interlaced so
  448. that both `a' and `A' come before `b'; the accented and other
  449. international characters may be interlaced so that ä comes
  450. before `b'.</P>
  451. <P>
  452. <H2><A NAME="internationalisation">Internationalisation</A></H2>
  453. <P>If you may assume POSIX (a rather large assumption), you may read
  454. more about the POSIX locale system from <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.  The locale
  455. system at least attempts to make things a little bit more portable,
  456. or at least more convenient and native-friendly for non-English
  457. users.  The system affects character sets and encoding, and date
  458. and time formatting--amongst other things.</P>
  459. <P>
  460. <H2><A NAME="system resources">System Resources</A></H2>
  461. <P>If your code is destined for systems with severely constrained (or
  462. missing!) virtual memory systems then you want to be <EM>especially</EM> mindful
  463. of avoiding wasteful constructs such as:</P>
  464. <PRE>
  465.     # NOTE: this is no longer "bad" in perl5.005
  466.     for (0..10000000) {}                       # bad
  467.     for (my $x = 0; $x <= 10000000; ++$x) {}   # good</PRE>
  468. <PRE>
  469.     @lines = <VERY_LARGE_FILE>;                # bad</PRE>
  470. <PRE>
  471.     while (<FILE>) {$file .= $_}               # sometimes bad
  472.     $file = join('', <FILE>);                  # better</PRE>
  473. <P>The last two constructs may appear unintuitive to most people.  The
  474. first repeatedly grows a string, whereas the second allocates a
  475. large chunk of memory in one go.  On some systems, the second is
  476. more efficient that the first.</P>
  477. <P>
  478. <H2><A NAME="security">Security</A></H2>
  479. <P>Most multi-user platforms provide basic levels of security, usually
  480. implemented at the filesystem level.  Some, however, do
  481. not--unfortunately.  Thus the notion of user id, or ``home'' directory,
  482. or even the state of being logged-in, may be unrecognizable on many
  483. platforms.  If you write programs that are security-conscious, it
  484. is usually best to know what type of system you will be running
  485. under so that you can write code explicitly for that platform (or
  486. class of platforms).</P>
  487. <P>
  488. <H2><A NAME="style">Style</A></H2>
  489. <P>For those times when it is necessary to have platform-specific code,
  490. consider keeping the platform-specific code in one place, making porting
  491. to other platforms easier.  Use the Config module and the special
  492. variable <CODE>$^O</CODE> to differentiate platforms, as described in
  493. <A HREF="#platforms">PLATFORMS</A>.</P>
  494. <P>Be careful in the tests you supply with your module or programs.
  495. Module code may be fully portable, but its tests might not be.  This
  496. often happens when tests spawn off other processes or call external
  497. programs to aid in the testing, or when (as noted above) the tests
  498. assume certain things about the filesystem and paths.  Be careful
  499. not to depend on a specific output style for errors, such as when
  500. checking <CODE>$!</CODE> after an system call.  Some platforms expect a certain
  501. output format, and perl on those platforms may have been adjusted
  502. accordingly.  Most specifically, don't anchor a regex when testing
  503. an error value.</P>
  504. <P>
  505. <HR>
  506. <H1><A NAME="cpan testers">CPAN Testers</A></H1>
  507. <P>Modules uploaded to CPAN are tested by a variety of volunteers on
  508. different platforms.  These CPAN testers are notified by mail of each
  509. new upload, and reply to the list with PASS, FAIL, NA (not applicable to
  510. this platform), or UNKNOWN (unknown), along with any relevant notations.</P>
  511. <P>The purpose of the testing is twofold: one, to help developers fix any
  512. problems in their code that crop up because of lack of testing on other
  513. platforms; two, to provide users with information about whether
  514. a given module works on a given platform.</P>
  515. <DL>
  516. <DT><STRONG><A NAME="item_Mailing_list%3A_cpan%2Dtesters%40perl%2Eorg">Mailing list: <A HREF="mailto:cpan-testers@perl.org">cpan-testers@perl.org</A></A></STRONG><BR>
  517. <DD>
  518. <DT><STRONG><A NAME="item_Testing_results%3A_http%3A%2F%2Ftesters%2Ecpan%2Eo">Testing results: <A HREF="http://testers.cpan.org/">http://testers.cpan.org/</A></A></STRONG><BR>
  519. <DD>
  520. </DL>
  521. <P>
  522. <HR>
  523. <H1><A NAME="platforms">PLATFORMS</A></H1>
  524. <P>As of version 5.002, Perl is built with a <CODE>$^O</CODE> variable that
  525. indicates the operating system it was built on.  This was implemented
  526. to help speed up code that would otherwise have to <CODE>use Config</CODE>
  527. and use the value of <CODE>$Config{osname}</CODE>.  Of course, to get more
  528. detailed information about the system, looking into <CODE>%Config</CODE> is
  529. certainly recommended.</P>
  530. <P><CODE>%Config</CODE> cannot always be trusted, however, because it was built
  531. at compile time.  If perl was built in one place, then transferred
  532. elsewhere, some values may be wrong.  The values may even have been
  533. edited after the fact.</P>
  534. <P>
  535. <H2><A NAME="unix">Unix</A></H2>
  536. <P>Perl works on a bewildering variety of Unix and Unix-like platforms (see
  537. e.g. most of the files in the <EM>hints/</EM> directory in the source code kit).
  538. On most of these systems, the value of <CODE>$^O</CODE> (hence <CODE>$Config{'osname'}</CODE>,
  539. too) is determined either by lowercasing and stripping punctuation from the
  540. first field of the string returned by typing <CODE>uname -a</CODE> (or a similar command)
  541. at the shell prompt or by testing the file system for the presence of
  542. uniquely named files such as a kernel or header file.  Here, for example,
  543. are a few of the more popular Unix flavors:</P>
  544. <PRE>
  545.     uname         $^O        $Config{'archname'}
  546.     --------------------------------------------
  547.     AIX           aix        aix
  548.     BSD/OS        bsdos      i386-bsdos
  549.     dgux          dgux       AViiON-dgux
  550.     DYNIX/ptx     dynixptx   i386-dynixptx
  551.     FreeBSD       freebsd    freebsd-i386    
  552.     Linux         linux      arm-linux
  553.     Linux         linux      i386-linux
  554.     Linux         linux      i586-linux
  555.     Linux         linux      ppc-linux
  556.     HP-UX         hpux       PA-RISC1.1
  557.     IRIX          irix       irix
  558.     Mac OS X      rhapsody   rhapsody
  559.     MachTen PPC   machten    powerpc-machten
  560.     NeXT 3        next       next-fat
  561.     NeXT 4        next       OPENSTEP-Mach
  562.     openbsd       openbsd    i386-openbsd
  563.     OSF1          dec_osf    alpha-dec_osf
  564.     reliantunix-n svr4       RM400-svr4
  565.     SCO_SV        sco_sv     i386-sco_sv
  566.     SINIX-N       svr4       RM400-svr4
  567.     sn4609        unicos     CRAY_C90-unicos
  568.     sn6521        unicosmk   t3e-unicosmk
  569.     sn9617        unicos     CRAY_J90-unicos
  570.     SunOS         solaris    sun4-solaris
  571.     SunOS         solaris    i86pc-solaris
  572.     SunOS4        sunos      sun4-sunos</PRE>
  573. <P>Because the value of <CODE>$Config{archname}</CODE> may depend on the
  574. hardware architecture, it can vary more than the value of <CODE>$^O</CODE>.</P>
  575. <P>
  576. <H2><A NAME="dos and derivatives">DOS and Derivatives</A></H2>
  577. <P>Perl has long been ported to Intel-style microcomputers running under
  578. systems like PC-DOS, MS-DOS, OS/2, and most Windows platforms you can
  579. bring yourself to mention (except for Windows CE, if you count that).
  580. Users familiar with <EM>COMMAND.COM</EM> or <EM>CMD.EXE</EM> style shells should
  581. be aware that each of these file specifications may have subtle
  582. differences:</P>
  583. <PRE>
  584.     $filespec0 = "c:/foo/bar/file.txt";
  585.     $filespec1 = "c:\\foo\\bar\\file.txt";
  586.     $filespec2 = 'c:\foo\bar\file.txt';
  587.     $filespec3 = 'c:\\foo\\bar\\file.txt';</PRE>
  588. <P>System calls accept either <CODE>/</CODE> or <CODE>\</CODE> as the path separator.
  589. However, many command-line utilities of DOS vintage treat <CODE>/</CODE> as
  590. the option prefix, so may get confused by filenames containing <CODE>/</CODE>.
  591. Aside from calling any external programs, <CODE>/</CODE> will work just fine,
  592. and probably better, as it is more consistent with popular usage,
  593. and avoids the problem of remembering what to backwhack and what
  594. not to.</P>
  595. <P>The DOS FAT filesystem can accommodate only ``8.3'' style filenames.  Under
  596. the ``case-insensitive, but case-preserving'' HPFS (OS/2) and NTFS (NT)
  597. filesystems you may have to be careful about case returned with functions
  598. like <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A> or used with functions like <A HREF="#item_open"><CODE>open</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_opendir"><CODE>opendir</CODE></A>.</P>
  599. <P>DOS also treats several filenames as special, such as AUX, PRN,
  600. NUL, CON, COM1, LPT1, LPT2, etc.  Unfortunately, sometimes these
  601. filenames won't even work if you include an explicit directory
  602. prefix.  It is best to avoid such filenames, if you want your code
  603. to be portable to DOS and its derivatives.  It's hard to know what
  604. these all are, unfortunately.</P>
  605. <P>Users of these operating systems may also wish to make use of
  606. scripts such as <EM>pl2bat.bat</EM> or <EM>pl2cmd</EM> to
  607. put wrappers around your scripts.</P>
  608. <P>Newline (<CODE>\n</CODE>) is translated as <CODE>\015\012</CODE> by STDIO when reading from
  609. and writing to files (see <A HREF="#newlines">Newlines</A>).  <A HREF="#item_binmode"><CODE>binmode(FILEHANDLE)</CODE></A>
  610. will keep <CODE>\n</CODE> translated as <CODE>\012</CODE> for that filehandle.  Since it is a
  611. no-op on other systems, <A HREF="#item_binmode"><CODE>binmode</CODE></A> should be used for cross-platform code
  612. that deals with binary data.  That's assuming you realize in advance
  613. that your data is in binary.  General-purpose programs should
  614. often assume nothing about their data.</P>
  615. <P>The <CODE>$^O</CODE> variable and the <CODE>$Config{archname}</CODE> values for various
  616. DOSish perls are as follows:</P>
  617. <PRE>
  618.     OS            $^O        $Config{'archname'}
  619.     --------------------------------------------
  620.     MS-DOS        dos
  621.     PC-DOS        dos
  622.     OS/2          os2
  623.     Windows 95    MSWin32    MSWin32-x86
  624.     Windows 98    MSWin32    MSWin32-x86
  625.     Windows NT    MSWin32    MSWin32-x86
  626.     Windows NT    MSWin32    MSWin32-ALPHA
  627.     Windows NT    MSWin32    MSWin32-ppc
  628.     Cygwin        cygwin</PRE>
  629. <P>Also see:</P>
  630. <UL>
  631. <LI>
  632. The djgpp environment for DOS, <A HREF="http://www.delorie.com/djgpp/">http://www.delorie.com/djgpp/</A>
  633. and <A HREF="../../lib/Pod/perldos.html">the perldos manpage</A>.
  634. <P></P>
  635. <LI>
  636. The EMX environment for DOS, OS/2, etc. <A HREF="mailto:emx@iaehv.nl,">emx@iaehv.nl,</A>
  637. <A HREF="http://www.leo.org/pub/comp/os/os2/leo/gnu/emx+gcc/index.html">http://www.leo.org/pub/comp/os/os2/leo/gnu/emx+gcc/index.html</A> or
  638. <A HREF="ftp://hobbes.nmsu.edu/pub/os2/dev/emx.">ftp://hobbes.nmsu.edu/pub/os2/dev/emx.</A>  Also <A HREF="../../lib/Pod/perlos2.html">the perlos2 manpage</A>.
  639. <P></P>
  640. <LI>
  641. Build instructions for Win32 in <A HREF="../../lib/Pod/perlwin32.html">the perlwin32 manpage</A>, or under the Cygnus environment
  642. in <A HREF="../../lib/Pod/perlcygwin.html">the perlcygwin manpage</A>.
  643. <P></P>
  644. <LI>
  645. The <CODE>Win32::*</CODE> modules in <A HREF="../../lib/Pod/Win32.html">the Win32 manpage</A>.
  646. <P></P>
  647. <LI>
  648. The ActiveState Pages, <A HREF="http://www.activestate.com/">http://www.activestate.com/</A>
  649. <P></P>
  650. <LI>
  651. The Cygwin environment for Win32; <EM>README.cygwin</EM> (installed 
  652. as <A HREF="../../lib/Pod/perlcygwin.html">the perlcygwin manpage</A>), <A HREF="http://sourceware.cygnus.com/cygwin/">http://sourceware.cygnus.com/cygwin/</A>
  653. <P></P>
  654. <LI>
  655. The U/WIN environment for Win32,
  656. <http://www.research.att.com/sw/tools/uwin/
  657. <P></P>
  658. <DT><STRONG><A NAME="item_Build_instructions_for_OS%2F2%2C_perlos2">Build instructions for OS/2, <A HREF="../../lib/Pod/perlos2.html">the perlos2 manpage</A></A></STRONG><BR>
  659. <DD>
  660. </UL>
  661. <P>
  662. <H2><A NAME="mac os">Mac OS</A></H2>
  663. <P>Any module requiring XS compilation is right out for most people, because
  664. MacPerl is built using non-free (and non-cheap!) compilers.  Some XS
  665. modules that can work with MacPerl are built and distributed in binary
  666. form on CPAN.</P>
  667. <P>Directories are specified as:</P>
  668. <PRE>
  669.     volume:folder:file              for absolute pathnames
  670.     volume:folder:                  for absolute pathnames
  671.     :folder:file                    for relative pathnames
  672.     :folder:                        for relative pathnames
  673.     :file                           for relative pathnames
  674.     file                            for relative pathnames</PRE>
  675. <P>Files are stored in the directory in alphabetical order.  Filenames are
  676. limited to 31 characters, and may include any character except for
  677. null and <CODE>:</CODE>, which is reserved as the path separator.</P>
  678. <P>Instead of <A HREF="#item_flock"><CODE>flock</CODE></A>, see <CODE>FSpSetFLock</CODE> and <CODE>FSpRstFLock</CODE> in the
  679. Mac::Files module, or <A HREF="#item_chmod"><CODE>chmod(0444, ...)</CODE></A> and <A HREF="#item_chmod"><CODE>chmod(0666, ...)</CODE></A>.</P>
  680. <P>In the MacPerl application, you can't run a program from the command line;
  681. programs that expect <CODE>@ARGV</CODE> to be populated can be edited with something
  682. like the following, which brings up a dialog box asking for the command
  683. line arguments.</P>
  684. <PRE>
  685.     if (!@ARGV) {
  686.         @ARGV = split /\s+/, MacPerl::Ask('Arguments?');
  687.     }</PRE>
  688. <P>A MacPerl script saved as a ``droplet'' will populate <CODE>@ARGV</CODE> with the full
  689. pathnames of the files dropped onto the script.</P>
  690. <P>Mac users can run programs under a type of command line interface
  691. under MPW (Macintosh Programmer's Workshop, a free development
  692. environment from Apple).  MacPerl was first introduced as an MPW
  693. tool, and MPW can be used like a shell:</P>
  694. <PRE>
  695.     perl myscript.plx some arguments</PRE>
  696. <P>ToolServer is another app from Apple that provides access to MPW tools
  697. from MPW and the MacPerl app, which allows MacPerl programs to use
  698. <A HREF="#item_system"><CODE>system</CODE></A>, backticks, and piped <A HREF="#item_open"><CODE>open</CODE></A>.</P>
  699. <P>``Mac OS'' is the proper name for the operating system, but the value
  700. in <CODE>$^O</CODE> is ``MacOS''.  To determine architecture, version, or whether
  701. the application or MPW tool version is running, check:</P>
  702. <PRE>
  703.     $is_app    = $MacPerl::Version =~ /App/;
  704.     $is_tool   = $MacPerl::Version =~ /MPW/;
  705.     ($version) = $MacPerl::Version =~ /^(\S+)/;
  706.     $is_ppc    = $MacPerl::Architecture eq 'MacPPC';
  707.     $is_68k    = $MacPerl::Architecture eq 'Mac68K';</PRE>
  708. <P>Mac OS X and Mac OS X Server, based on NeXT's OpenStep OS, will
  709. (in theory) be able to run MacPerl natively, under the ``Classic''
  710. environment.  The new ``Cocoa'' environment (formerly called the ``Yellow Box'')
  711. may run a slightly modified version of MacPerl, using the Carbon interfaces.</P>
  712. <P>Mac OS X Server and its Open Source version, Darwin, both run Unix
  713. perl natively (with a few patches).  Full support for these
  714. is slated for perl 5.6.</P>
  715. <P>Also see:</P>
  716. <UL>
  717. <LI>
  718. The MacPerl Pages, <A HREF="http://www.macperl.com/">http://www.macperl.com/</A> .
  719. <P></P>
  720. <LI>
  721. The MacPerl mailing lists, <A HREF="http://www.macperl.org/">http://www.macperl.org/</A> .
  722. <P></P>
  723. <LI>
  724. MacPerl Module Porters, <A HREF="http://pudge.net/mmp/">http://pudge.net/mmp/</A> .
  725. <P></P></UL>
  726. <P>
  727. <H2><A NAME="vms">VMS</A></H2>
  728. <P>Perl on VMS is discussed in <A HREF="../../lib/Pod/perlvms.html">the perlvms manpage</A> in the perl distribution.
  729. Perl on VMS can accept either VMS- or Unix-style file
  730. specifications as in either of the following:</P>
  731. <PRE>
  732.     $ perl -ne "print if /perl_setup/i" SYS$LOGIN:LOGIN.COM
  733.     $ perl -ne "print if /perl_setup/i" /sys$login/login.com</PRE>
  734. <P>but not a mixture of both as in:</P>
  735. <PRE>
  736.     $ perl -ne "print if /perl_setup/i" sys$login:/login.com
  737.     Can't open sys$login:/login.com: file specification syntax error</PRE>
  738. <P>Interacting with Perl from the Digital Command Language (DCL) shell
  739. often requires a different set of quotation marks than Unix shells do.
  740. For example:</P>
  741. <PRE>
  742.     $ perl -e "print ""Hello, world.\n"""
  743.     Hello, world.</PRE>
  744. <P>There are several ways to wrap your perl scripts in DCL <EM>.COM</EM> files, if
  745. you are so inclined.  For example:</P>
  746. <PRE>
  747.     $ write sys$output "Hello from DCL!"
  748.     $ if p1 .eqs. ""
  749.     $ then perl -x 'f$environment("PROCEDURE")
  750.     $ else perl -x - 'p1 'p2 'p3 'p4 'p5 'p6 'p7 'p8
  751.     $ deck/dollars="__END__"
  752.     #!/usr/bin/perl</PRE>
  753. <PRE>
  754.     print "Hello from Perl!\n";</PRE>
  755. <PRE>
  756.     __END__
  757.     $ endif</PRE>
  758. <P>Do take care with <CODE>$ ASSIGN/nolog/user SYS$COMMAND: SYS$INPUT</CODE> if your
  759. perl-in-DCL script expects to do things like <CODE>$read = <STDIN>;</CODE>.</P>
  760. <P>Filenames are in the format ``name.extension;version''.  The maximum
  761. length for filenames is 39 characters, and the maximum length for
  762. extensions is also 39 characters.  Version is a number from 1 to
  763. 32767.  Valid characters are <CODE>/[A-Z0-9$_-]/</CODE>.</P>
  764. <P>VMS's RMS filesystem is case-insensitive and does not preserve case.
  765. <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A> returns lowercased filenames, but specifying a file for
  766. opening remains case-insensitive.  Files without extensions have a
  767. trailing period on them, so doing a <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A> with a file named <EM>A.;5</EM>
  768. will return <EM>a.</EM> (though that file could be opened with
  769. <A HREF="#item_open"><CODE>open(FH, 'A')</CODE></A>).</P>
  770. <P>RMS had an eight level limit on directory depths from any rooted logical
  771. (allowing 16 levels overall) prior to VMS 7.2.  Hence
  772. <CODE>PERL_ROOT:[LIB.2.3.4.5.6.7.8]</CODE> is a valid directory specification but
  773. <CODE>PERL_ROOT:[LIB.2.3.4.5.6.7.8.9]</CODE> is not.  <EM>Makefile.PL</EM> authors might
  774. have to take this into account, but at least they can refer to the former
  775. as <CODE>/PERL_ROOT/lib/2/3/4/5/6/7/8/</CODE>.</P>
  776. <P>The VMS::Filespec module, which gets installed as part of the build
  777. process on VMS, is a pure Perl module that can easily be installed on
  778. non-VMS platforms and can be helpful for conversions to and from RMS
  779. native formats.</P>
  780. <P>What <CODE>\n</CODE> represents depends on the type of file opened.  It could
  781. be <CODE>\015</CODE>, <CODE>\012</CODE>, <CODE>\015\012</CODE>, or nothing.  The VMS::Stdio module
  782. provides access to the special <CODE>fopen()</CODE> requirements of files with unusual
  783. attributes on VMS.</P>
  784. <P>TCP/IP stacks are optional on VMS, so socket routines might not be
  785. implemented.  UDP sockets may not be supported.</P>
  786. <P>The value of <CODE>$^O</CODE> on OpenVMS is ``VMS''.  To determine the architecture
  787. that you are running on without resorting to loading all of <CODE>%Config</CODE>
  788. you can examine the content of the <CODE>@INC</CODE> array like so:</P>
  789. <PRE>
  790.     if (grep(/VMS_AXP/, @INC)) {
  791.         print "I'm on Alpha!\n";</PRE>
  792. <PRE>
  793.     } elsif (grep(/VMS_VAX/, @INC)) {
  794.         print "I'm on VAX!\n";</PRE>
  795. <PRE>
  796.     } else {
  797.         print "I'm not so sure about where $^O is...\n";
  798.     }</PRE>
  799. <P>On VMS, perl determines the UTC offset from the <CODE>SYS$TIMEZONE_DIFFERENTIAL</CODE>
  800. logical name.  Although the VMS epoch began at 17-NOV-1858 00:00:00.00,
  801. calls to <A HREF="../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime</CODE></A> are adjusted to count offsets from
  802. 01-JAN-1970 00:00:00.00, just like Unix.</P>
  803. <P>Also see:</P>
  804. <UL>
  805. <LI>
  806. <EM>README.vms</EM> (installed as <EM>README_vms</EM>), <A HREF="../../lib/Pod/perlvms.html">the perlvms manpage</A>
  807. <P></P>
  808. <LI>
  809. vmsperl list, <A HREF="mailto:majordomo@perl.org">majordomo@perl.org</A>
  810. <P>(Put the words <CODE>subscribe vmsperl</CODE> in message body.)</P>
  811. <P></P>
  812. <LI>
  813. vmsperl on the web, <A HREF="http://www.sidhe.org/vmsperl/index.html">http://www.sidhe.org/vmsperl/index.html</A>
  814. <P></P></UL>
  815. <P>
  816. <H2><A NAME="vos">VOS</A></H2>
  817. <P>Perl on VOS is discussed in <EM>README.vos</EM> in the perl distribution.
  818. Perl on VOS can accept either VOS- or Unix-style file
  819. specifications as in either of the following:</P>
  820. <PRE>
  821.     $ perl -ne "print if /perl_setup/i" >system>notices
  822.     $ perl -ne "print if /perl_setup/i" /system/notices</PRE>
  823. <P>or even a mixture of both as in:</P>
  824. <PRE>
  825.     $ perl -ne "print if /perl_setup/i" >system/notices</PRE>
  826. <P>Even though VOS allows the slash character to appear in object
  827. names, because the VOS port of Perl interprets it as a pathname
  828. delimiting character, VOS files, directories, or links whose names
  829. contain a slash character cannot be processed.  Such files must be
  830. renamed before they can be processed by Perl.  Note that VOS limits
  831. file names to 32 or fewer characters.</P>
  832. <P>The following C functions are unimplemented on VOS, and any attempt by
  833. Perl to use them will result in a fatal error message and an immediate
  834. exit from Perl:  dup, do_aspawn, do_spawn, fork, waitpid.  Once these
  835. functions become available in the VOS POSIX.1 implementation, you can
  836. either recompile and rebind Perl, or you can download a newer port from
  837. ftp.stratus.com.</P>
  838. <P>The value of <CODE>$^O</CODE> on VOS is ``VOS''.  To determine the architecture that
  839. you are running on without resorting to loading all of <CODE>%Config</CODE> you
  840. can examine the content of the @INC array like so:</P>
  841. <PRE>
  842.     if ($^O =~ /VOS/) {
  843.         print "I'm on a Stratus box!\n";
  844.     } else {
  845.         print "I'm not on a Stratus box!\n";
  846.         die;
  847.     }</PRE>
  848. <PRE>
  849.     if (grep(/860/, @INC)) {
  850.         print "This box is a Stratus XA/R!\n";</PRE>
  851. <PRE>
  852.     } elsif (grep(/7100/, @INC)) {
  853.         print "This box is a Stratus HP 7100 or 8xxx!\n";</PRE>
  854. <PRE>
  855.     } elsif (grep(/8000/, @INC)) {
  856.         print "This box is a Stratus HP 8xxx!\n";</PRE>
  857. <PRE>
  858.     } else {
  859.         print "This box is a Stratus 68K!\n";
  860.     }</PRE>
  861. <P>Also see:</P>
  862. <UL>
  863. <LI>
  864. <EM>README.vos</EM>
  865. <P></P>
  866. <LI>
  867. The VOS mailing list.
  868. <P>There is no specific mailing list for Perl on VOS.  You can post
  869. comments to the comp.sys.stratus newsgroup, or subscribe to the general
  870. Stratus mailing list.  Send a letter with ``Subscribe Info-Stratus'' in
  871. the message body to <A HREF="mailto:majordomo@list.stratagy.com.">majordomo@list.stratagy.com.</A></P>
  872. <P></P>
  873. <LI>
  874. VOS Perl on the web at <A HREF="http://ftp.stratus.com/pub/vos/vos.html">http://ftp.stratus.com/pub/vos/vos.html</A>
  875. <P></P></UL>
  876. <P>
  877. <H2><A NAME="ebcdic platforms">EBCDIC Platforms</A></H2>
  878. <P>Recent versions of Perl have been ported to platforms such as OS/400 on
  879. AS/400 minicomputers as well as OS/390, VM/ESA, and BS2000 for S/390
  880. Mainframes.  Such computers use EBCDIC character sets internally (usually
  881. Character Code Set ID 0037 for OS/400 and either 1047 or POSIX-BC for S/390
  882. systems).  On the mainframe perl currently works under the ``Unix system
  883. services for OS/390'' (formerly known as OpenEdition), VM/ESA OpenEdition, or
  884. the BS200 POSIX-BC system (BS2000 is supported in perl 5.6 and greater).
  885. See <A HREF="../../lib/Pod/perlos390.html">the perlos390 manpage</A> for details.</P>
  886. <P>As of R2.5 of USS for OS/390 and Version 2.3 of VM/ESA these Unix
  887. sub-systems do not support the <CODE>#!</CODE> shebang trick for script invocation.
  888. Hence, on OS/390 and VM/ESA perl scripts can be executed with a header
  889. similar to the following simple script:</P>
  890. <PRE>
  891.     : # use perl
  892.         eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
  893.             if 0;
  894.     #!/usr/local/bin/perl     # just a comment really</PRE>
  895. <PRE>
  896.     print "Hello from perl!\n";</PRE>
  897. <P>OS/390 will support the <CODE>#!</CODE> shebang trick in release 2.8 and beyond.
  898. Calls to <A HREF="#item_system"><CODE>system</CODE></A> and backticks can use POSIX shell syntax on all
  899. S/390 systems.</P>
  900. <P>On the AS/400, if PERL5 is in your library list, you may need
  901. to wrap your perl scripts in a CL procedure to invoke them like so:</P>
  902. <PRE>
  903.     BEGIN
  904.       CALL PGM(PERL5/PERL) PARM('/QOpenSys/hello.pl')
  905.     ENDPGM</PRE>
  906. <P>This will invoke the perl script <EM>hello.pl</EM> in the root of the
  907. QOpenSys file system.  On the AS/400 calls to <A HREF="#item_system"><CODE>system</CODE></A> or backticks
  908. must use CL syntax.</P>
  909. <P>On these platforms, bear in mind that the EBCDIC character set may have
  910. an effect on what happens with some perl functions (such as <A HREF="../../lib/Pod/perlfunc.html#item_chr"><CODE>chr</CODE></A>,
  911. <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_ord"><CODE>ord</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_sort"><CODE>sort</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack</CODE></A>), as
  912. well as bit-fiddling with ASCII constants using operators like <CODE>^</CODE>, <CODE>&</CODE>
  913. and <CODE>|</CODE>, not to mention dealing with socket interfaces to ASCII computers
  914. (see <A HREF="#newlines">Newlines</A>).</P>
  915. <P>Fortunately, most web servers for the mainframe will correctly
  916. translate the <CODE>\n</CODE> in the following statement to its ASCII equivalent
  917. (<CODE>\r</CODE> is the same under both Unix and OS/390 & VM/ESA):</P>
  918. <PRE>
  919.     print "Content-type: text/html\r\n\r\n";</PRE>
  920. <P>The values of <CODE>$^O</CODE> on some of these platforms includes:</P>
  921. <PRE>
  922.     uname         $^O        $Config{'archname'}
  923.     --------------------------------------------
  924.     OS/390        os390      os390
  925.     OS400         os400      os400
  926.     POSIX-BC      posix-bc   BS2000-posix-bc
  927.     VM/ESA        vmesa      vmesa</PRE>
  928. <P>Some simple tricks for determining if you are running on an EBCDIC
  929. platform could include any of the following (perhaps all):</P>
  930. <PRE>
  931.     if ("\t" eq "\05")   { print "EBCDIC may be spoken here!\n"; }</PRE>
  932. <PRE>
  933.     if (ord('A') == 193) { print "EBCDIC may be spoken here!\n"; }</PRE>
  934. <PRE>
  935.     if (chr(169) eq 'z') { print "EBCDIC may be spoken here!\n"; }</PRE>
  936. <P>One thing you may not want to rely on is the EBCDIC encoding
  937. of punctuation characters since these may differ from code page to code
  938. page (and once your module or script is rumoured to work with EBCDIC,
  939. folks will want it to work with all EBCDIC character sets).</P>
  940. <P>Also see:</P>
  941. <UL>
  942. <LI>
  943. *
  944. <P><A HREF="../../lib/Pod/perlos390.html">the perlos390 manpage</A>, <EM>README.os390</EM>, <EM>README.posix-bc</EM>, <EM>README.vmesa</EM></P>
  945. <P></P>
  946. <LI>
  947. The <A HREF="mailto:perl-mvs@perl.org">perl-mvs@perl.org</A> list is for discussion of porting issues as well as
  948. general usage issues for all EBCDIC Perls.  Send a message body of
  949. ``subscribe perl-mvs'' to <A HREF="mailto:majordomo@perl.org.">majordomo@perl.org.</A>
  950. <P></P>
  951. <LI>
  952. AS/400 Perl information at
  953. <A HREF="ttp://as400.rochester.ibm.com/">ttp://as400.rochester.ibm.com/</A>
  954. as well as on CPAN in the <EM>ports/</EM> directory.
  955. <P></P></UL>
  956. <P>
  957. <H2><A NAME="acorn risc os">Acorn RISC OS</A></H2>
  958. <P>Because Acorns use ASCII with newlines (<CODE>\n</CODE>) in text files as <CODE>\012</CODE> like
  959. Unix, and because Unix filename emulation is turned on by default, 
  960. most simple scripts will probably work ``out of the box''.  The native
  961. filesystem is modular, and individual filesystems are free to be
  962. case-sensitive or insensitive, and are usually case-preserving.  Some
  963. native filesystems have name length limits, which file and directory
  964. names are silently truncated to fit.  Scripts should be aware that the
  965. standard filesystem currently has a name length limit of <STRONG>10</STRONG>
  966. characters, with up to 77 items in a directory, but other filesystems
  967. may not impose such limitations.</P>
  968. <P>Native filenames are of the form</P>
  969. <PRE>
  970.     Filesystem#Special_Field::DiskName.$.Directory.Directory.File</PRE>
  971. <P>where</P>
  972. <PRE>
  973.     Special_Field is not usually present, but may contain . and $ .
  974.     Filesystem =~ m|[A-Za-z0-9_]|
  975.     DsicName   =~ m|[A-Za-z0-9_/]|
  976.     $ represents the root directory
  977.     . is the path separator
  978.     @ is the current directory (per filesystem but machine global)
  979.     ^ is the parent directory
  980.     Directory and File =~ m|[^\0- "\.\$\%\&:\@\\^\|\177]+|</PRE>
  981. <P>The default filename translation is roughly <CODE>tr|/.|./|;</CODE></P>
  982. <P>Note that <CODE>"ADFS::HardDisk.$.File" ne 'ADFS::HardDisk.$.File'</CODE> and that
  983. the second stage of <CODE>$</CODE> interpolation in regular expressions will fall
  984. foul of the <CODE>$.</CODE> if scripts are not careful.</P>
  985. <P>Logical paths specified by system variables containing comma-separated
  986. search lists are also allowed; hence <CODE>System:Modules</CODE> is a valid
  987. filename, and the filesystem will prefix <CODE>Modules</CODE> with each section of
  988. <CODE>System$Path</CODE> until a name is made that points to an object on disk.
  989. Writing to a new file <CODE>System:Modules</CODE> would be allowed only if
  990. <CODE>System$Path</CODE> contains a single item list.  The filesystem will also
  991. expand system variables in filenames if enclosed in angle brackets, so
  992. <CODE><System$Dir>.Modules</CODE> would look for the file
  993. <CODE>$ENV{'System$Dir'} . 'Modules'</CODE>.  The obvious implication of this is
  994. that <STRONG>fully qualified filenames can start with <CODE><></CODE></STRONG> and should
  995. be protected when <A HREF="#item_open"><CODE>open</CODE></A> is used for input.</P>
  996. <P>Because <CODE>.</CODE> was in use as a directory separator and filenames could not
  997. be assumed to be unique after 10 characters, Acorn implemented the C
  998. compiler to strip the trailing <CODE>.c</CODE> <CODE>.h</CODE> <CODE>.s</CODE> and <CODE>.o</CODE> suffix from
  999. filenames specified in source code and store the respective files in
  1000. subdirectories named after the suffix.  Hence files are translated:</P>
  1001. <PRE>
  1002.     foo.h           h.foo
  1003.     C:foo.h         C:h.foo        (logical path variable)
  1004.     sys/os.h        sys.h.os       (C compiler groks Unix-speak)
  1005.     10charname.c    c.10charname
  1006.     10charname.o    o.10charname
  1007.     11charname_.c   c.11charname   (assuming filesystem truncates at 10)</PRE>
  1008. <P>The Unix emulation library's translation of filenames to native assumes
  1009. that this sort of translation is required, and it allows a user-defined list
  1010. of known suffixes that it will transpose in this fashion.  This may
  1011. seem transparent, but consider that with these rules <CODE>foo/bar/baz.h</CODE>
  1012. and <CODE>foo/bar/h/baz</CODE> both map to <CODE>foo.bar.h.baz</CODE>, and that <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A> and
  1013. <A HREF="#item_glob"><CODE>glob</CODE></A> cannot and do not attempt to emulate the reverse mapping.  Other
  1014. <CODE>.</CODE>'s in filenames are translated to <CODE>/</CODE>.</P>
  1015. <P>As implied above, the environment accessed through <CODE>%ENV</CODE> is global, and
  1016. the convention is that program specific environment variables are of the
  1017. form <CODE>Program$Name</CODE>.  Each filesystem maintains a current directory,
  1018. and the current filesystem's current directory is the <STRONG>global</STRONG> current
  1019. directory.  Consequently, sociable programs don't change the current
  1020. directory but rely on full pathnames, and programs (and Makefiles) cannot
  1021. assume that they can spawn a child process which can change the current
  1022. directory without affecting its parent (and everyone else for that
  1023. matter).</P>
  1024. <P>Because native operating system filehandles are global and are currently 
  1025. allocated down from 255, with 0 being a reserved value, the Unix emulation
  1026. library emulates Unix filehandles.  Consequently, you can't rely on
  1027. passing <CODE>STDIN</CODE>, <CODE>STDOUT</CODE>, or <CODE>STDERR</CODE> to your children.</P>
  1028. <P>The desire of users to express filenames of the form
  1029. <CODE><Foo$Dir>.Bar</CODE> on the command line unquoted causes problems,
  1030. too: <CODE>``</CODE> command output capture has to perform a guessing game.  It
  1031. assumes that a string <CODE><[^<>]+\$[^<>]></CODE> is a
  1032. reference to an environment variable, whereas anything else involving
  1033. <CODE><</CODE> or <CODE>></CODE> is redirection, and generally manages to be 99%
  1034. right.  Of course, the problem remains that scripts cannot rely on any
  1035. Unix tools being available, or that any tools found have Unix-like command
  1036. line arguments.</P>
  1037. <P>Extensions and XS are, in theory, buildable by anyone using free
  1038. tools.  In practice, many don't, as users of the Acorn platform are
  1039. used to binary distributions.  MakeMaker does run, but no available
  1040. make currently copes with MakeMaker's makefiles; even if and when
  1041. this should be fixed, the lack of a Unix-like shell will cause
  1042. problems with makefile rules, especially lines of the form <CODE>cd
  1043. sdbm && make all</CODE>, and anything using quoting.</P>
  1044. <P>``RISC OS'' is the proper name for the operating system, but the value
  1045. in <CODE>$^O</CODE> is ``riscos'' (because we don't like shouting).</P>
  1046. <P>
  1047. <H2><A NAME="other perls">Other perls</A></H2>
  1048. <P>Perl has been ported to many platforms that do not fit into any of
  1049. the categories listed above.  Some, such as AmigaOS, Atari MiNT,
  1050. BeOS, HP MPE/iX, QNX, Plan 9, and VOS, have been well-integrated
  1051. into the standard Perl source code kit.  You may need to see the
  1052. <EM>ports/</EM> directory on CPAN for information, and possibly binaries,
  1053. for the likes of: aos, Atari ST, lynxos, riscos, Novell Netware,
  1054. Tandem Guardian, <EM>etc.</EM>  (Yes, we know that some of these OSes may
  1055. fall under the Unix category, but we are not a standards body.)</P>
  1056. <P>Some approximate operating system names and their <CODE>$^O</CODE> values
  1057. in the ``OTHER'' category include:</P>
  1058. <PRE>
  1059.     OS            $^O        $Config{'archname'}
  1060.     ------------------------------------------
  1061.     Amiga DOS     amigaos    m68k-amigos
  1062.     MPE/iX        mpeix      PA-RISC1.1</PRE>
  1063. <P>See also:</P>
  1064. <UL>
  1065. <LI>
  1066. Amiga, <EM>README.amiga</EM> (installed as <A HREF="../../lib/Pod/perlamiga.html">the perlamiga manpage</A>).
  1067. <P></P>
  1068. <LI>
  1069. Atari, <EM>README.mint</EM> and Guido Flohr's web page
  1070. <A HREF="http://stud.uni-sb.de/~gufl0000/">http://stud.uni-sb.de/~gufl0000/</A>
  1071. <P></P>
  1072. <LI>
  1073. Be OS, <EM>README.beos</EM>
  1074. <P></P>
  1075. <LI>
  1076. HP 300 MPE/iX, <EM>README.mpeix</EM> and Mark Bixby's web page
  1077. <A HREF="http://www.cccd.edu/~markb/perlix.html">http://www.cccd.edu/~markb/perlix.html</A>
  1078. <P></P>
  1079. <LI>
  1080. A free perl5-based PERL.NLM for Novell Netware is available in
  1081. precompiled binary and source code form from <A HREF="http://www.novell.com/">http://www.novell.com/</A>
  1082. as well as from CPAN.
  1083. <P></P>
  1084. <DT><DD>
  1085. Plan 9, <EM>README.plan9</EM>
  1086. <P></P></UL>
  1087. <P>
  1088. <HR>
  1089. <H1><A NAME="function implementations">FUNCTION IMPLEMENTATIONS</A></H1>
  1090. <P>Listed below are functions that are either completely unimplemented
  1091. or else have been implemented differently on various platforms.
  1092. Following each description will be, in parentheses, a list of
  1093. platforms that the description applies to.</P>
  1094. <P>The list may well be incomplete, or even wrong in some places.  When
  1095. in doubt, consult the platform-specific README files in the Perl
  1096. source distribution, and any other documentation resources accompanying
  1097. a given port.</P>
  1098. <P>Be aware, moreover, that even among Unix-ish systems there are variations.</P>
  1099. <P>For many functions, you can also query <CODE>%Config</CODE>, exported by
  1100. default from the Config module.  For example, to check whether the
  1101. platform has the <A HREF="#item_lstat"><CODE>lstat</CODE></A> call, check <CODE>$Config{d_lstat}</CODE>.  See
  1102. <A HREF="../../lib/Config.html">the Config manpage</A> for a full description of available variables.</P>
  1103. <P>
  1104. <H2><A NAME="alphabetical listing of perl functions">Alphabetical Listing of Perl Functions</A></H2>
  1105. <DL>
  1106. <DT><STRONG><A NAME="item_%2DX_FILEHANDLE">-X FILEHANDLE</A></STRONG><BR>
  1107. <DD>
  1108. <DT><STRONG><A NAME="item_%2DX_EXPR">-X EXPR</A></STRONG><BR>
  1109. <DD>
  1110. <DT><STRONG><A NAME="item_%2DX">-X</A></STRONG><BR>
  1111. <DD>
  1112. <CODE>-r</CODE>, <CODE>-w</CODE>, and <CODE>-x</CODE> have a limited meaning only; directories
  1113. and applications are executable, and there are no uid/gid
  1114. considerations.  <CODE>-o</CODE> is not supported.  (Mac OS)
  1115. <P><CODE>-r</CODE>, <CODE>-w</CODE>, <CODE>-x</CODE>, and <CODE>-o</CODE> tell whether the file is accessible,
  1116. which may not reflect UIC-based file protections.  (VMS)</P>
  1117. <P><CODE>-s</CODE> returns the size of the data fork, not the total size of data fork
  1118. plus resource fork.  (Mac OS).</P>
  1119. <P><CODE>-s</CODE> by name on an open file will return the space reserved on disk,
  1120. rather than the current extent.  <CODE>-s</CODE> on an open filehandle returns the
  1121. current size.  (RISC OS)</P>
  1122. <P><CODE>-R</CODE>, <CODE>-W</CODE>, <A HREF="#item_%2DX"><CODE>-X</CODE></A>, <CODE>-O</CODE> are indistinguishable from <CODE>-r</CODE>, <CODE>-w</CODE>,
  1123. <CODE>-x</CODE>, <CODE>-o</CODE>. (Mac OS, Win32, VMS, RISC OS)</P>
  1124. <P><CODE>-b</CODE>, <CODE>-c</CODE>, <CODE>-k</CODE>, <CODE>-g</CODE>, <CODE>-p</CODE>, <CODE>-u</CODE>, <CODE>-A</CODE> are not implemented.
  1125. (Mac OS)</P>
  1126. <P><CODE>-g</CODE>, <CODE>-k</CODE>, <CODE>-l</CODE>, <CODE>-p</CODE>, <CODE>-u</CODE>, <CODE>-A</CODE> are not particularly meaningful.
  1127. (Win32, VMS, RISC OS)</P>
  1128. <P><CODE>-d</CODE> is true if passed a device spec without an explicit directory.
  1129. (VMS)</P>
  1130. <P><CODE>-T</CODE> and <CODE>-B</CODE> are implemented, but might misclassify Mac text files
  1131. with foreign characters; this is the case will all platforms, but may
  1132. affect Mac OS often.  (Mac OS)</P>
  1133. <P><CODE>-x</CODE> (or <A HREF="#item_%2DX"><CODE>-X</CODE></A>) determine if a file ends in one of the executable
  1134. suffixes.  <CODE>-S</CODE> is meaningless.  (Win32)</P>
  1135. <P><CODE>-x</CODE> (or <A HREF="#item_%2DX"><CODE>-X</CODE></A>) determine if a file has an executable file type.
  1136. (RISC OS)</P>
  1137. <P></P>
  1138. <DT><STRONG><A NAME="item_alarm">alarm SECONDS</A></STRONG><BR>
  1139. <DD>
  1140. <DT><STRONG>alarm</STRONG><BR>
  1141. <DD>
  1142. Not implemented. (Win32)
  1143. <P></P>
  1144. <DT><STRONG><A NAME="item_binmode">binmode FILEHANDLE</A></STRONG><BR>
  1145. <DD>
  1146. Meaningless.  (Mac OS, RISC OS)
  1147. <P>Reopens file and restores pointer; if function fails, underlying
  1148. filehandle may be closed, or pointer may be in a different position.
  1149. (VMS)</P>
  1150. <P>The value returned by <A HREF="../../lib/Pod/perlfunc.html#item_tell"><CODE>tell</CODE></A> may be affected after the call, and
  1151. the filehandle may be flushed. (Win32)</P>
  1152. <P></P>
  1153. <DT><STRONG><A NAME="item_chmod">chmod LIST</A></STRONG><BR>
  1154. <DD>
  1155. Only limited meaning.  Disabling/enabling write permission is mapped to
  1156. locking/unlocking the file. (Mac OS)
  1157. <P>Only good for changing ``owner'' read-write access, ``group'', and ``other''
  1158. bits are meaningless. (Win32)</P>
  1159. <P>Only good for changing ``owner'' and ``other'' read-write access. (RISC OS)</P>
  1160. <P>Access permissions are mapped onto VOS access-control list changes. (VOS)</P>
  1161. <P></P>
  1162. <DT><STRONG><A NAME="item_chown">chown LIST</A></STRONG><BR>
  1163. <DD>
  1164. Not implemented. (Mac OS, Win32, Plan9, RISC OS, VOS)
  1165. <P>Does nothing, but won't fail. (Win32)</P>
  1166. <P></P>
  1167. <DT><STRONG><A NAME="item_chroot">chroot FILENAME</A></STRONG><BR>
  1168. <DD>
  1169. <DT><STRONG>chroot</STRONG><BR>
  1170. <DD>
  1171. Not implemented. (Mac OS, Win32, VMS, Plan9, RISC OS, VOS, VM/ESA)
  1172. <P></P>
  1173. <DT><STRONG><A NAME="item_crypt">crypt PLAINTEXT,SALT</A></STRONG><BR>
  1174. <DD>
  1175. May not be available if library or source was not provided when building
  1176. perl. (Win32)
  1177. <P>Not implemented. (VOS)</P>
  1178. <P></P>
  1179. <DT><STRONG><A NAME="item_dbmclose">dbmclose HASH</A></STRONG><BR>
  1180. <DD>
  1181. Not implemented. (VMS, Plan9, VOS)
  1182. <P></P>
  1183. <DT><STRONG><A NAME="item_dbmopen">dbmopen HASH,DBNAME,MODE</A></STRONG><BR>
  1184. <DD>
  1185. Not implemented. (VMS, Plan9, VOS)
  1186. <P></P>
  1187. <DT><STRONG><A NAME="item_dump">dump LABEL</A></STRONG><BR>
  1188. <DD>
  1189. Not useful. (Mac OS, RISC OS)
  1190. <P>Not implemented. (Win32)</P>
  1191. <P>Invokes VMS debugger. (VMS)</P>
  1192. <P></P>
  1193. <DT><STRONG><A NAME="item_exec">exec LIST</A></STRONG><BR>
  1194. <DD>
  1195. Not implemented. (Mac OS)
  1196. <P>Implemented via Spawn. (VM/ESA)</P>
  1197. <P>Does not automatically flush output handles on some platforms.
  1198. (SunOS, Solaris, HP-UX)</P>
  1199. <P></P>
  1200. <DT><STRONG><A NAME="item_fcntl">fcntl FILEHANDLE,FUNCTION,SCALAR</A></STRONG><BR>
  1201. <DD>
  1202. Not implemented. (Win32, VMS)
  1203. <P></P>
  1204. <DT><STRONG><A NAME="item_flock">flock FILEHANDLE,OPERATION</A></STRONG><BR>
  1205. <DD>
  1206. Not implemented (Mac OS, VMS, RISC OS, VOS).
  1207. <P>Available only on Windows NT (not on Windows 95). (Win32)</P>
  1208. <P></P>
  1209. <DT><STRONG><A NAME="item_fork">fork</A></STRONG><BR>
  1210. <DD>
  1211. Not implemented. (Mac OS, AmigaOS, RISC OS, VOS, VM/ESA)
  1212. <P>Emulated using multiple interpreters.  See <A HREF="../../lib/Pod/perlfork.html">the perlfork manpage</A>.  (Win32)</P>
  1213. <P>Does not automatically flush output handles on some platforms.
  1214. (SunOS, Solaris, HP-UX)</P>
  1215. <P></P>
  1216. <DT><STRONG><A NAME="item_getlogin">getlogin</A></STRONG><BR>
  1217. <DD>
  1218. Not implemented. (Mac OS, RISC OS)
  1219. <P></P>
  1220. <DT><STRONG><A NAME="item_getpgrp">getpgrp PID</A></STRONG><BR>
  1221. <DD>
  1222. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS)
  1223. <P></P>
  1224. <DT><STRONG><A NAME="item_getppid">getppid</A></STRONG><BR>
  1225. <DD>
  1226. Not implemented. (Mac OS, Win32, VMS, RISC OS)
  1227. <P></P>
  1228. <DT><STRONG><A NAME="item_getpriority">getpriority WHICH,WHO</A></STRONG><BR>
  1229. <DD>
  1230. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS, VM/ESA)
  1231. <P></P>
  1232. <DT><STRONG><A NAME="item_getpwnam">getpwnam NAME</A></STRONG><BR>
  1233. <DD>
  1234. Not implemented. (Mac OS, Win32)
  1235. <P>Not useful. (RISC OS)</P>
  1236. <P></P>
  1237. <DT><STRONG><A NAME="item_getgrnam">getgrnam NAME</A></STRONG><BR>
  1238. <DD>
  1239. Not implemented. (Mac OS, Win32, VMS, RISC OS)
  1240. <P></P>
  1241. <DT><STRONG><A NAME="item_getnetbyname">getnetbyname NAME</A></STRONG><BR>
  1242. <DD>
  1243. Not implemented. (Mac OS, Win32, Plan9)
  1244. <P></P>
  1245. <DT><STRONG><A NAME="item_getpwuid">getpwuid UID</A></STRONG><BR>
  1246. <DD>
  1247. Not implemented. (Mac OS, Win32)
  1248. <P>Not useful. (RISC OS)</P>
  1249. <P></P>
  1250. <DT><STRONG><A NAME="item_getgrgid">getgrgid GID</A></STRONG><BR>
  1251. <DD>
  1252. Not implemented. (Mac OS, Win32, VMS, RISC OS)
  1253. <P></P>
  1254. <DT><STRONG><A NAME="item_getnetbyaddr">getnetbyaddr ADDR,ADDRTYPE</A></STRONG><BR>
  1255. <DD>
  1256. Not implemented. (Mac OS, Win32, Plan9)
  1257. <P></P>
  1258. <DT><STRONG><A NAME="item_getprotobynumber">getprotobynumber NUMBER</A></STRONG><BR>
  1259. <DD>
  1260. Not implemented. (Mac OS)
  1261. <P></P>
  1262. <DT><STRONG><A NAME="item_getservbyport">getservbyport PORT,PROTO</A></STRONG><BR>
  1263. <DD>
  1264. Not implemented. (Mac OS)
  1265. <P></P>
  1266. <DT><STRONG><A NAME="item_getpwent">getpwent</A></STRONG><BR>
  1267. <DD>
  1268. Not implemented. (Mac OS, Win32, VM/ESA)
  1269. <P></P>
  1270. <DT><STRONG><A NAME="item_getgrent">getgrent</A></STRONG><BR>
  1271. <DD>
  1272. Not implemented. (Mac OS, Win32, VMS, VM/ESA)
  1273. <P></P>
  1274. <DT><STRONG><A NAME="item_gethostent">gethostent</A></STRONG><BR>
  1275. <DD>
  1276. Not implemented. (Mac OS, Win32)
  1277. <P></P>
  1278. <DT><STRONG><A NAME="item_getnetent">getnetent</A></STRONG><BR>
  1279. <DD>
  1280. Not implemented. (Mac OS, Win32, Plan9)
  1281. <P></P>
  1282. <DT><STRONG><A NAME="item_getprotoent">getprotoent</A></STRONG><BR>
  1283. <DD>
  1284. Not implemented. (Mac OS, Win32, Plan9)
  1285. <P></P>
  1286. <DT><STRONG><A NAME="item_getservent">getservent</A></STRONG><BR>
  1287. <DD>
  1288. Not implemented. (Win32, Plan9)
  1289. <P></P>
  1290. <DT><STRONG><A NAME="item_setpwent">setpwent</A></STRONG><BR>
  1291. <DD>
  1292. Not implemented. (Mac OS, Win32, RISC OS)
  1293. <P></P>
  1294. <DT><STRONG><A NAME="item_setgrent">setgrent</A></STRONG><BR>
  1295. <DD>
  1296. Not implemented. (Mac OS, Win32, VMS, RISC OS)
  1297. <P></P>
  1298. <DT><STRONG><A NAME="item_sethostent">sethostent STAYOPEN</A></STRONG><BR>
  1299. <DD>
  1300. Not implemented. (Mac OS, Win32, Plan9, RISC OS)
  1301. <P></P>
  1302. <DT><STRONG><A NAME="item_setnetent">setnetent STAYOPEN</A></STRONG><BR>
  1303. <DD>
  1304. Not implemented. (Mac OS, Win32, Plan9, RISC OS)
  1305. <P></P>
  1306. <DT><STRONG><A NAME="item_setprotoent">setprotoent STAYOPEN</A></STRONG><BR>
  1307. <DD>
  1308. Not implemented. (Mac OS, Win32, Plan9, RISC OS)
  1309. <P></P>
  1310. <DT><STRONG><A NAME="item_setservent">setservent STAYOPEN</A></STRONG><BR>
  1311. <DD>
  1312. Not implemented. (Plan9, Win32, RISC OS)
  1313. <P></P>
  1314. <DT><STRONG><A NAME="item_endpwent">endpwent</A></STRONG><BR>
  1315. <DD>
  1316. Not implemented. (Mac OS, MPE/iX, VM/ESA, Win32)
  1317. <P></P>
  1318. <DT><STRONG><A NAME="item_endgrent">endgrent</A></STRONG><BR>
  1319. <DD>
  1320. Not implemented. (Mac OS, MPE/iX, RISC OS, VM/ESA, VMS, Win32)
  1321. <P></P>
  1322. <DT><STRONG><A NAME="item_endhostent">endhostent</A></STRONG><BR>
  1323. <DD>
  1324. Not implemented. (Mac OS, Win32)
  1325. <P></P>
  1326. <DT><STRONG><A NAME="item_endnetent">endnetent</A></STRONG><BR>
  1327. <DD>
  1328. Not implemented. (Mac OS, Win32, Plan9)
  1329. <P></P>
  1330. <DT><STRONG><A NAME="item_endprotoent">endprotoent</A></STRONG><BR>
  1331. <DD>
  1332. Not implemented. (Mac OS, Win32, Plan9)
  1333. <P></P>
  1334. <DT><STRONG><A NAME="item_endservent">endservent</A></STRONG><BR>
  1335. <DD>
  1336. Not implemented. (Plan9, Win32)
  1337. <P></P>
  1338. <DT><STRONG><A NAME="item_getsockopt">getsockopt SOCKET,LEVEL,OPTNAME</A></STRONG><BR>
  1339. <DD>
  1340. Not implemented. (Mac OS, Plan9)
  1341. <P></P>
  1342. <DT><STRONG><A NAME="item_glob">glob EXPR</A></STRONG><BR>
  1343. <DD>
  1344. <DT><STRONG>glob</STRONG><BR>
  1345. <DD>
  1346. Globbing built-in, but only <CODE>*</CODE> and <CODE>?</CODE> metacharacters are supported.
  1347. (Mac OS)
  1348. <P>This operator is implemented via the File::Glob extension on most
  1349. platforms.  See <A HREF="../../lib/File/Glob.html">the File::Glob manpage</A> for portability information.</P>
  1350. <P></P>
  1351. <DT><STRONG><A NAME="item_ioctl">ioctl FILEHANDLE,FUNCTION,SCALAR</A></STRONG><BR>
  1352. <DD>
  1353. Not implemented. (VMS)
  1354. <P>Available only for socket handles, and it does what the <CODE>ioctlsocket()</CODE> call
  1355. in the Winsock API does. (Win32)</P>
  1356. <P>Available only for socket handles. (RISC OS)</P>
  1357. <P></P>
  1358. <DT><STRONG><A NAME="item_kill">kill SIGNAL, LIST</A></STRONG><BR>
  1359. <DD>
  1360. Not implemented, hence not useful for taint checking. (Mac OS,
  1361. RISC OS)
  1362. <P><A HREF="#item_kill"><CODE>kill()</CODE></A> doesn't have the semantics of <CODE>raise()</CODE>, i.e. it doesn't send
  1363. a signal to the identified process like it does on Unix platforms.
  1364. Instead <A HREF="#item_kill"><CODE>kill($sig, $pid)</CODE></A> terminates the process identified by $pid,
  1365. and makes it exit immediately with exit status $sig.  As in Unix, if
  1366. $sig is 0 and the specified process exists, it returns true without
  1367. actually terminating it. (Win32)</P>
  1368. <P></P>
  1369. <DT><STRONG><A NAME="item_link">link OLDFILE,NEWFILE</A></STRONG><BR>
  1370. <DD>
  1371. Not implemented. (Mac OS, MPE/iX, VMS, RISC OS)
  1372. <P>Link count not updated because hard links are not quite that hard
  1373. (They are sort of half-way between hard and soft links). (AmigaOS)</P>
  1374. <P>Hard links are implemented on Win32 (Windows NT and Windows 2000)
  1375. under NTFS only.</P>
  1376. <P></P>
  1377. <DT><STRONG><A NAME="item_lstat">lstat FILEHANDLE</A></STRONG><BR>
  1378. <DD>
  1379. <DT><STRONG>lstat EXPR</STRONG><BR>
  1380. <DD>
  1381. <DT><STRONG>lstat</STRONG><BR>
  1382. <DD>
  1383. Not implemented. (VMS, RISC OS)
  1384. <P>Return values (especially for device and inode) may be bogus. (Win32)</P>
  1385. <P></P>
  1386. <DT><STRONG><A NAME="item_msgctl">msgctl ID,CMD,ARG</A></STRONG><BR>
  1387. <DD>
  1388. <DT><STRONG><A NAME="item_msgget">msgget KEY,FLAGS</A></STRONG><BR>
  1389. <DD>
  1390. <DT><STRONG><A NAME="item_msgsnd">msgsnd ID,MSG,FLAGS</A></STRONG><BR>
  1391. <DD>
  1392. <DT><STRONG><A NAME="item_msgrcv">msgrcv ID,VAR,SIZE,TYPE,FLAGS</A></STRONG><BR>
  1393. <DD>
  1394. Not implemented. (Mac OS, Win32, VMS, Plan9, RISC OS, VOS)
  1395. <P></P>
  1396. <DT><STRONG><A NAME="item_open">open FILEHANDLE,EXPR</A></STRONG><BR>
  1397. <DD>
  1398. <DT><STRONG>open FILEHANDLE</STRONG><BR>
  1399. <DD>
  1400. The <CODE>|</CODE> variants are supported only if ToolServer is installed.
  1401. (Mac OS)
  1402. <P>open to <CODE>|-</CODE> and <CODE>-|</CODE> are unsupported. (Mac OS, Win32, RISC OS)</P>
  1403. <P>Opening a process does not automatically flush output handles on some
  1404. platforms.  (SunOS, Solaris, HP-UX)</P>
  1405. <P></P>
  1406. <DT><STRONG><A NAME="item_pipe">pipe READHANDLE,WRITEHANDLE</A></STRONG><BR>
  1407. <DD>
  1408. Not implemented. (Mac OS)
  1409. <P>Very limited functionality. (MiNT)</P>
  1410. <P></P>
  1411. <DT><STRONG><A NAME="item_readlink">readlink EXPR</A></STRONG><BR>
  1412. <DD>
  1413. <DT><STRONG>readlink</STRONG><BR>
  1414. <DD>
  1415. Not implemented. (Win32, VMS, RISC OS)
  1416. <P></P>
  1417. <DT><STRONG><A NAME="item_select">select RBITS,WBITS,EBITS,TIMEOUT</A></STRONG><BR>
  1418. <DD>
  1419. Only implemented on sockets. (Win32)
  1420. <P>Only reliable on sockets. (RISC OS)</P>
  1421. <P>Note that the <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket FILEHANDLE</CODE></A> form is generally portable.</P>
  1422. <P></P>
  1423. <DT><STRONG><A NAME="item_semctl">semctl ID,SEMNUM,CMD,ARG</A></STRONG><BR>
  1424. <DD>
  1425. <DT><STRONG><A NAME="item_semget">semget KEY,NSEMS,FLAGS</A></STRONG><BR>
  1426. <DD>
  1427. <DT><STRONG><A NAME="item_semop">semop KEY,OPSTRING</A></STRONG><BR>
  1428. <DD>
  1429. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS)
  1430. <P></P>
  1431. <DT><STRONG>setgrent</STRONG><BR>
  1432. <DD>
  1433. Not implemented. (MPE/iX, Win32)
  1434. <P></P>
  1435. <DT><STRONG><A NAME="item_setpgrp">setpgrp PID,PGRP</A></STRONG><BR>
  1436. <DD>
  1437. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS)
  1438. <P></P>
  1439. <DT><STRONG><A NAME="item_setpriority">setpriority WHICH,WHO,PRIORITY</A></STRONG><BR>
  1440. <DD>
  1441. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS)
  1442. <P></P>
  1443. <DT><STRONG>setpwent</STRONG><BR>
  1444. <DD>
  1445. Not implemented. (MPE/iX, Win32)
  1446. <P></P>
  1447. <DT><STRONG><A NAME="item_setsockopt">setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL</A></STRONG><BR>
  1448. <DD>
  1449. Not implemented. (Mac OS, Plan9)
  1450. <P></P>
  1451. <DT><STRONG><A NAME="item_shmctl">shmctl ID,CMD,ARG</A></STRONG><BR>
  1452. <DD>
  1453. <DT><STRONG><A NAME="item_shmget">shmget KEY,SIZE,FLAGS</A></STRONG><BR>
  1454. <DD>
  1455. <DT><STRONG><A NAME="item_shmread">shmread ID,VAR,POS,SIZE</A></STRONG><BR>
  1456. <DD>
  1457. <DT><STRONG><A NAME="item_shmwrite">shmwrite ID,STRING,POS,SIZE</A></STRONG><BR>
  1458. <DD>
  1459. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS)
  1460. <P></P>
  1461. <DT><STRONG><A NAME="item_socketpair">socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL</A></STRONG><BR>
  1462. <DD>
  1463. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS, VM/ESA)
  1464. <P></P>
  1465. <DT><STRONG><A NAME="item_stat">stat FILEHANDLE</A></STRONG><BR>
  1466. <DD>
  1467. <DT><STRONG>stat EXPR</STRONG><BR>
  1468. <DD>
  1469. <DT><STRONG>stat</STRONG><BR>
  1470. <DD>
  1471. mtime and atime are the same thing, and ctime is creation time instead of
  1472. inode change time. (Mac OS)
  1473. <P>device and inode are not meaningful.  (Win32)</P>
  1474. <P>device and inode are not necessarily reliable.  (VMS)</P>
  1475. <P>mtime, atime and ctime all return the last modification time.  Device and
  1476. inode are not necessarily reliable.  (RISC OS)</P>
  1477. <P></P>
  1478. <DT><STRONG><A NAME="item_symlink">symlink OLDFILE,NEWFILE</A></STRONG><BR>
  1479. <DD>
  1480. Not implemented. (Win32, VMS, RISC OS)
  1481. <P></P>
  1482. <DT><STRONG><A NAME="item_syscall">syscall LIST</A></STRONG><BR>
  1483. <DD>
  1484. Not implemented. (Mac OS, Win32, VMS, RISC OS, VOS, VM/ESA)
  1485. <P></P>
  1486. <DT><STRONG><A NAME="item_sysopen">sysopen FILEHANDLE,FILENAME,MODE,PERMS</A></STRONG><BR>
  1487. <DD>
  1488. The traditional ``0'', ``1'', and ``2'' MODEs are implemented with different
  1489. numeric values on some systems.  The flags exported by <CODE>Fcntl</CODE>
  1490. (O_RDONLY, O_WRONLY, O_RDWR) should work everywhere though.  (Mac
  1491. OS, OS/390, VM/ESA)
  1492. <P></P>
  1493. <DT><STRONG><A NAME="item_system">system LIST</A></STRONG><BR>
  1494. <DD>
  1495. Only implemented if ToolServer is installed. (Mac OS)
  1496. <P>As an optimization, may not call the command shell specified in
  1497. <CODE>$ENV{PERL5SHELL}</CODE>.  <A HREF="#item_system"><CODE>system(1, @args)</CODE></A> spawns an external
  1498. process and immediately returns its process designator, without
  1499. waiting for it to terminate.  Return value may be used subsequently
  1500. in <A HREF="#item_wait"><CODE>wait</CODE></A> or <A HREF="#item_waitpid"><CODE>waitpid</CODE></A>.  Failure to <CODE>spawn()</CODE> a subprocess is indicated
  1501. by setting $? to ``255 << 8''.  <CODE>$?</CODE> is set in a way compatible with
  1502. Unix (i.e. the exitstatus of the subprocess is obtained by ``$? >> 8'',
  1503. as described in the documentation).  (Win32)</P>
  1504. <P>There is no shell to process metacharacters, and the native standard is
  1505. to pass a command line terminated by ``\n'' ``\r'' or ``\0'' to the spawned
  1506. program.  Redirection such as <CODE>> foo</CODE> is performed (if at all) by
  1507. the run time library of the spawned program.  <A HREF="#item_system"><CODE>system</CODE></A> <EM>list</EM> will call
  1508. the Unix emulation library's <A HREF="#item_exec"><CODE>exec</CODE></A> emulation, which attempts to provide
  1509. emulation of the stdin, stdout, stderr in force in the parent, providing
  1510. the child program uses a compatible version of the emulation library.
  1511. <EM>scalar</EM> will call the native command line direct and no such emulation
  1512. of a child Unix program will exists.  Mileage <STRONG>will</STRONG> vary.  (RISC OS)</P>
  1513. <P>Far from being POSIX compliant.  Because there may be no underlying
  1514. /bin/sh tries to work around the problem by forking and execing the
  1515. first token in its argument string.  Handles basic redirection
  1516. (``<'' or ``>'') on its own behalf. (MiNT)</P>
  1517. <P>Does not automatically flush output handles on some platforms.
  1518. (SunOS, Solaris, HP-UX)</P>
  1519. <P></P>
  1520. <DT><STRONG><A NAME="item_times">times</A></STRONG><BR>
  1521. <DD>
  1522. Only the first entry returned is nonzero. (Mac OS)
  1523. <P>``cumulative'' times will be bogus.  On anything other than Windows NT
  1524. or Windows 2000, ``system'' time will be bogus, and ``user'' time is
  1525. actually the time returned by the <CODE>clock()</CODE> function in the C runtime
  1526. library. (Win32)</P>
  1527. <P>Not useful. (RISC OS)</P>
  1528. <P></P>
  1529. <DT><STRONG><A NAME="item_truncate">truncate FILEHANDLE,LENGTH</A></STRONG><BR>
  1530. <DD>
  1531. <DT><STRONG>truncate EXPR,LENGTH</STRONG><BR>
  1532. <DD>
  1533. Not implemented. (VMS)
  1534. <P>Truncation to zero-length only. (VOS)</P>
  1535. <P>If a FILEHANDLE is supplied, it must be writable and opened in append
  1536. mode (i.e., use <A HREF="#item_open"><CODE>open(FH, '</CODE></A>>filename')>
  1537. or <A HREF="#item_sysopen"><CODE>sysopen(FH,...,O_APPEND|O_RDWR)</CODE></A>.  If a filename is supplied, it
  1538. should not be held open elsewhere. (Win32)</P>
  1539. <P></P>
  1540. <DT><STRONG><A NAME="item_umask">umask EXPR</A></STRONG><BR>
  1541. <DD>
  1542. <DT><STRONG>umask</STRONG><BR>
  1543. <DD>
  1544. Returns undef where unavailable, as of version 5.005.
  1545. <P><A HREF="#item_umask"><CODE>umask</CODE></A> works but the correct permissions are set only when the file
  1546. is finally closed. (AmigaOS)</P>
  1547. <P></P>
  1548. <DT><STRONG><A NAME="item_utime">utime LIST</A></STRONG><BR>
  1549. <DD>
  1550. Only the modification time is updated. (Mac OS, VMS, RISC OS)
  1551. <P>May not behave as expected.  Behavior depends on the C runtime
  1552. library's implementation of utime(), and the filesystem being
  1553. used.  The FAT filesystem typically does not support an ``access
  1554. time'' field, and it may limit timestamps to a granularity of
  1555. two seconds. (Win32)</P>
  1556. <P></P>
  1557. <DT><STRONG><A NAME="item_wait">wait</A></STRONG><BR>
  1558. <DD>
  1559. <DT><STRONG><A NAME="item_waitpid">waitpid PID,FLAGS</A></STRONG><BR>
  1560. <DD>
  1561. Not implemented. (Mac OS, VOS)
  1562. <P>Can only be applied to process handles returned for processes spawned
  1563. using <A HREF="#item_system"><CODE>system(1, ...)</CODE></A>. (Win32)</P>
  1564. <P>Not useful. (RISC OS)</P>
  1565. <P></P></DL>
  1566. <P>
  1567. <HR>
  1568. <H1><A NAME="changes">CHANGES</A></H1>
  1569. <DL>
  1570. <DT><STRONG><A NAME="item_v1%2E47%2C_22_March_2000">v1.47, 22 March 2000</A></STRONG><BR>
  1571. <DD>
  1572. Various cleanups from Tom Christiansen, including migration of 
  1573. long platform listings from <A HREF="../../lib/Pod/perl.html">the perl manpage</A>.
  1574. <P></P>
  1575. <DT><STRONG><A NAME="item_v1%2E46%2C_12_February_2000">v1.46, 12 February 2000</A></STRONG><BR>
  1576. <DD>
  1577. Updates for VOS and MPE/iX. (Peter Prymmer)  Other small changes.
  1578. <P></P>
  1579. <DT><STRONG><A NAME="item_v1%2E45%2C_20_December_1999">v1.45, 20 December 1999</A></STRONG><BR>
  1580. <DD>
  1581. Small changes from 5.005_63 distribution, more changes to EBCDIC info.
  1582. <P></P>
  1583. <DT><STRONG><A NAME="item_v1%2E44%2C_19_July_1999">v1.44, 19 July 1999</A></STRONG><BR>
  1584. <DD>
  1585. A bunch of updates from Peter Prymmer for <CODE>$^O</CODE> values,
  1586. endianness, File::Spec, VMS, BS2000, OS/400.
  1587. <P></P>
  1588. <DT><STRONG><A NAME="item_v1%2E43%2C_24_May_1999">v1.43, 24 May 1999</A></STRONG><BR>
  1589. <DD>
  1590. Added a lot of cleaning up from Tom Christiansen.
  1591. <P></P>
  1592. <DT><STRONG><A NAME="item_v1%2E42%2C_22_May_1999">v1.42, 22 May 1999</A></STRONG><BR>
  1593. <DD>
  1594. Added notes about tests, sprintf/printf, and epoch offsets.
  1595. <P></P>
  1596. <DT><STRONG><A NAME="item_v1%2E41%2C_19_May_1999">v1.41, 19 May 1999</A></STRONG><BR>
  1597. <DD>
  1598. Lots more little changes to formatting and content.
  1599. <P>Added a bunch of <CODE>$^O</CODE> and related values
  1600. for various platforms; fixed mail and web addresses, and added
  1601. and changed miscellaneous notes.  (Peter Prymmer)</P>
  1602. <P></P>
  1603. <DT><STRONG><A NAME="item_v1%2E40%2C_11_April_1999">v1.40, 11 April 1999</A></STRONG><BR>
  1604. <DD>
  1605. Miscellaneous changes.
  1606. <P></P>
  1607. <DT><STRONG><A NAME="item_v1%2E39%2C_11_February_1999">v1.39, 11 February 1999</A></STRONG><BR>
  1608. <DD>
  1609. Changes from Jarkko and EMX URL fixes Michael Schwern.  Additional
  1610. note about newlines added.
  1611. <P></P>
  1612. <DT><STRONG><A NAME="item_v1%2E38%2C_31_December_1998">v1.38, 31 December 1998</A></STRONG><BR>
  1613. <DD>
  1614. More changes from Jarkko.
  1615. <P></P>
  1616. <DT><STRONG><A NAME="item_v1%2E37%2C_19_December_1998">v1.37, 19 December 1998</A></STRONG><BR>
  1617. <DD>
  1618. More minor changes.  Merge two separate version 1.35 documents.
  1619. <P></P>
  1620. <DT><STRONG><A NAME="item_v1%2E36%2C_9_September_1998">v1.36, 9 September 1998</A></STRONG><BR>
  1621. <DD>
  1622. Updated for Stratus VOS.  Also known as version 1.35.
  1623. <P></P>
  1624. <DT><STRONG><A NAME="item_v1%2E35%2C_13_August_1998">v1.35, 13 August 1998</A></STRONG><BR>
  1625. <DD>
  1626. Integrate more minor changes, plus addition of new sections under
  1627. <A HREF="#issues">ISSUES</A>: <A HREF="#numbers endianness and width">Numbers endianness and Width</A>,
  1628. <A HREF="#character sets and character encoding">Character sets and character encoding</A>,
  1629. <A HREF="#internationalisation">Internationalisation</A>.
  1630. <P></P>
  1631. <DT><STRONG><A NAME="item_v1%2E33%2C_06_August_1998">v1.33, 06 August 1998</A></STRONG><BR>
  1632. <DD>
  1633. Integrate more minor changes.
  1634. <P></P>
  1635. <DT><STRONG><A NAME="item_v1%2E32%2C_05_August_1998">v1.32, 05 August 1998</A></STRONG><BR>
  1636. <DD>
  1637. Integrate more minor changes.
  1638. <P></P>
  1639. <DT><STRONG><A NAME="item_v1%2E30%2C_03_August_1998">v1.30, 03 August 1998</A></STRONG><BR>
  1640. <DD>
  1641. Major update for RISC OS, other minor changes.
  1642. <P></P>
  1643. <DT><STRONG><A NAME="item_v1%2E23%2C_10_July_1998">v1.23, 10 July 1998</A></STRONG><BR>
  1644. <DD>
  1645. First public release with perl5.005.
  1646. <P></P></DL>
  1647. <P>
  1648. <HR>
  1649. <H1><A NAME="supported platforms">Supported Platforms</A></H1>
  1650. <P>As of early March 2000 (the Perl release 5.6.0), the following
  1651. platforms are able to build Perl from the standard source code
  1652. distribution available at <A HREF="http://www.perl.com/CPAN/src/index.html">http://www.perl.com/CPAN/src/index.html</A></P>
  1653. <PRE>
  1654.         AIX
  1655.         DOS DJGPP       1)
  1656.         FreeBSD
  1657.         HP-UX
  1658.         IRIX
  1659.         Linux
  1660.         LynxOS
  1661.         MachTen
  1662.         MPE/iX
  1663.         NetBSD
  1664.         OpenBSD
  1665.         OS/2
  1666.         QNX
  1667.         Rhapsody/Darwin 2)
  1668.         SCO SV
  1669.         SINIX
  1670.         Solaris
  1671.         SVR4
  1672.         Tru64 UNIX      3)
  1673.         UNICOS
  1674.         UNICOS/mk
  1675.         Unixware
  1676.         VMS
  1677.         VOS
  1678.         Windows 3.1     1)
  1679.         Windows 95      1) 4)
  1680.         Windows 98      1) 4)
  1681.         Windows NT      1) 4)</PRE>
  1682. <PRE>
  1683.         1) in DOS mode either the DOS or OS/2 ports can be used
  1684.         2) new in 5.6.0: the BSD/NeXT-based UNIX of Mac OS X
  1685.         3) formerly known as Digital UNIX and before that DEC OSF/1
  1686.         4) compilers: Borland, Cygwin, Mingw32 EGCS/GCC, VC++</PRE>
  1687. <P>The following platforms worked for the previous major release
  1688. (5.005_03 being the latest maintenance release of that, as of early
  1689. March 2000), but be did not manage to test these in time for the 5.6.0
  1690. release of Perl.  There is a very good chance that these will work
  1691. just fine with 5.6.0.</P>
  1692. <PRE>
  1693.         A/UX
  1694.         BeOS
  1695.         BSD/OS
  1696.         DG/UX
  1697.         DYNIX/ptx
  1698.         DomainOS
  1699.         Hurd
  1700.         NextSTEP
  1701.         OpenSTEP
  1702.         PowerMAX
  1703.         SCO ODT/OSR     
  1704.         SunOS
  1705.         Ultrix</PRE>
  1706. <P>The following platform worked for the previous major release (5.005_03
  1707. being the latest maintenance release of that, as of early March 2000).
  1708. However, standardization on UTF-8 as the internal string representation
  1709. in 5.6.0 has introduced incompatibilities in this EBCDIC platform.
  1710. Support for this platform may be enabled in a future release:</P>
  1711. <PRE>
  1712.         OS390   1)</PRE>
  1713. <PRE>
  1714.         1) Previously known as MVS, or OpenEdition MVS.</PRE>
  1715. <P>Strongly related to the OS390 platform by also being EBCDIC-based
  1716. mainframe platforms are the following platforms:</P>
  1717. <PRE>
  1718.         BS2000
  1719.         VM/ESA</PRE>
  1720. <P>These are also not expected to work under 5.6.0 for the same reasons
  1721. as OS390.  Contact the mailing list <A HREF="mailto:perl-mvs@perl.org">perl-mvs@perl.org</A> for more details.</P>
  1722. <P>MacOS (Classic, pre-X) is almost 5.6.0-ready; building from the source
  1723. does work with 5.6.0, but additional MacOS specific source code is needed
  1724. for a complete port.  Contact the mailing list <A HREF="mailto:macperl-porters@macperl.org">macperl-porters@macperl.org</A>
  1725. for more information.</P>
  1726. <P>The following platforms have been known to build Perl from source in
  1727. the past, but we haven't been able to verify their status for the
  1728. current release, either because the hardware/software platforms are
  1729. rare or because we don't have an active champion on these
  1730. platforms--or both:</P>
  1731. <PRE>
  1732.         3b1
  1733.         AmigaOS
  1734.         ConvexOS
  1735.         CX/UX
  1736.         DC/OSx
  1737.         DDE SMES
  1738.         DOS EMX
  1739.         Dynix
  1740.         EP/IX
  1741.         ESIX
  1742.         FPS
  1743.         GENIX
  1744.         Greenhills
  1745.         ISC
  1746.         MachTen 68k
  1747.         MiNT
  1748.         MPC
  1749.         NEWS-OS
  1750.         Opus
  1751.         Plan 9
  1752.         PowerUX
  1753.         RISC/os
  1754.         Stellar
  1755.         SVR2
  1756.         TI1500
  1757.         TitanOS
  1758.         Unisys Dynix
  1759.         Unixware</PRE>
  1760. <P>Support for the following platform is planned for a future Perl release:</P>
  1761. <PRE>
  1762.         Netware</PRE>
  1763. <P>The following platforms have their own source code distributions and
  1764. binaries available via <A HREF="http://www.perl.com/CPAN/ports/index.html:">http://www.perl.com/CPAN/ports/index.html:</A></P>
  1765. <PRE>
  1766.                                 Perl release</PRE>
  1767. <PRE>
  1768.         AS/400                  5.003
  1769.         Netware                 5.003_07
  1770.         Tandem Guardian         5.004</PRE>
  1771. <P>The following platforms have only binaries available via
  1772. <A HREF="http://www.perl.com/CPAN/ports/index.html">http://www.perl.com/CPAN/ports/index.html</A> :</P>
  1773. <PRE>
  1774.                                 Perl release</PRE>
  1775. <PRE>
  1776.         Acorn RISCOS            5.005_02
  1777.         AOS                     5.002
  1778.         LynxOS                  5.004_02</PRE>
  1779. <P>Although we do suggest that you always build your own Perl from
  1780. the source code, both for maximal configurability and for security,
  1781. in case you are in a hurry you can check
  1782. <A HREF="http://www.perl.com/CPAN/ports/index.html">http://www.perl.com/CPAN/ports/index.html</A> for binary distributions.</P>
  1783. <P>
  1784. <HR>
  1785. <H1><A NAME="see also">SEE ALSO</A></H1>
  1786. <P><A HREF="../../lib/Pod/perlamiga.html">the perlamiga manpage</A>, <A HREF="../../lib/Pod/perlcygwin.html">the perlcygwin manpage</A>, <A HREF="../../lib/Pod/perldos.html">the perldos manpage</A>, <A HREF="../../lib/Pod/perlhpux.html">the perlhpux manpage</A>, <A HREF="../../lib/Pod/perlos2.html">the perlos2 manpage</A>,
  1787. <A HREF="../../lib/Pod/perlos390.html">the perlos390 manpage</A>, <A HREF="../../lib/Pod/perlwin32.html">the perlwin32 manpage</A>, <A HREF="../../lib/Pod/perlvms.html">the perlvms manpage</A>, and <A HREF="../../lib/Pod/Win32.html">the Win32 manpage</A>.</P>
  1788. <P>
  1789. <HR>
  1790. <H1><A NAME="authors / contributors">AUTHORS / CONTRIBUTORS</A></H1>
  1791. <P>Abigail <<A HREF="mailto:abigail@fnx.com">abigail@fnx.com</A>>,
  1792. Charles Bailey <<A HREF="mailto:bailey@newman.upenn.edu">bailey@newman.upenn.edu</A>>,
  1793. Graham Barr <<A HREF="mailto:gbarr@pobox.com">gbarr@pobox.com</A>>,
  1794. Tom Christiansen <<A HREF="mailto:tchrist@perl.com">tchrist@perl.com</A>>,
  1795. Nicholas Clark <<A HREF="mailto:Nicholas.Clark@liverpool.ac.uk">Nicholas.Clark@liverpool.ac.uk</A>>,
  1796. Thomas Dorner <<A HREF="mailto:Thomas.Dorner@start.de">Thomas.Dorner@start.de</A>>,
  1797. Andy Dougherty <<A HREF="mailto:doughera@lafcol.lafayette.edu">doughera@lafcol.lafayette.edu</A>>,
  1798. Dominic Dunlop <<A HREF="mailto:domo@vo.lu">domo@vo.lu</A>>,
  1799. Neale Ferguson <<A HREF="mailto:neale@mailbox.tabnsw.com.au">neale@mailbox.tabnsw.com.au</A>>,
  1800. David J. Fiander <<A HREF="mailto:davidf@mks.com">davidf@mks.com</A>>,
  1801. Paul Green <<A HREF="mailto:Paul_Green@stratus.com">Paul_Green@stratus.com</A>>,
  1802. M.J.T. Guy <<A HREF="mailto:mjtg@cus.cam.ac.uk">mjtg@cus.cam.ac.uk</A>>,
  1803. Jarkko Hietaniemi <<A HREF="mailto:jhi@iki.fi<gt">jhi@iki.fi<gt</A>>,
  1804. Luther Huffman <<A HREF="mailto:lutherh@stratcom.com">lutherh@stratcom.com</A>>,
  1805. Nick Ing-Simmons <<A HREF="mailto:nick@ni-s.u-net.com">nick@ni-s.u-net.com</A>>,
  1806. Andreas J. König <<A HREF="mailto:koenig@kulturbox.de">koenig@kulturbox.de</A>>,
  1807. Markus Laker <<A HREF="mailto:mlaker@contax.co.uk">mlaker@contax.co.uk</A>>,
  1808. Andrew M. Langmead <<A HREF="mailto:aml@world.std.com">aml@world.std.com</A>>,
  1809. Larry Moore <<A HREF="mailto:ljmoore@freespace.net">ljmoore@freespace.net</A>>,
  1810. Paul Moore <<A HREF="mailto:Paul.Moore@uk.origin-it.com">Paul.Moore@uk.origin-it.com</A>>,
  1811. Chris Nandor <<A HREF="mailto:pudge@pobox.com">pudge@pobox.com</A>>,
  1812. Matthias Neeracher <<A HREF="mailto:neeri@iis.ee.ethz.ch">neeri@iis.ee.ethz.ch</A>>,
  1813. Gary Ng <<A HREF="mailto:71564.1743@CompuServe.COM">71564.1743@CompuServe.COM</A>>,
  1814. Tom Phoenix <<A HREF="mailto:rootbeer@teleport.com">rootbeer@teleport.com</A>>,
  1815. André Pirard <<A HREF="mailto:A.Pirard@ulg.ac.be">A.Pirard@ulg.ac.be</A>>,
  1816. Peter Prymmer <<A HREF="mailto:pvhp@forte.com">pvhp@forte.com</A>>,
  1817. Hugo van der Sanden <<A HREF="mailto:hv@crypt0.demon.co.uk">hv@crypt0.demon.co.uk</A>>,
  1818. Gurusamy Sarathy <<A HREF="mailto:gsar@activestate.com">gsar@activestate.com</A>>,
  1819. Paul J. Schinder <<A HREF="mailto:schinder@pobox.com">schinder@pobox.com</A>>,
  1820. Michael G Schwern <<A HREF="mailto:schwern@pobox.com">schwern@pobox.com</A>>,
  1821. Dan Sugalski <<A HREF="mailto:sugalskd@ous.edu">sugalskd@ous.edu</A>>,
  1822. Nathan Torkington <<A HREF="mailto:gnat@frii.com">gnat@frii.com</A>>.</P>
  1823. <P>This document is maintained by Chris Nandor
  1824. <<A HREF="mailto:pudge@pobox.com">pudge@pobox.com</A>>.</P>
  1825. <P>
  1826. <HR>
  1827. <H1><A NAME="version">VERSION</A></H1>
  1828. <P>Version 1.47, last modified 22 March 2000</P>
  1829. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1830. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1831. <STRONG><P CLASS=block> perlport - Writing portable Perl</P></STRONG>
  1832. </TD></TR>
  1833. </TABLE>
  1834.  
  1835. </BODY>
  1836.  
  1837. </HTML>
  1838.