1=head1 NAME 2 3perlvms - VMS-specific documentation for Perl 4 5=head1 DESCRIPTION 6 7Gathered below are notes describing details of Perl 5's 8behavior on VMS. They are a supplement to the regular Perl 5 9documentation, so we have focussed on the ways in which Perl 105 functions differently under VMS than it does under Unix, 11and on the interactions between Perl and the rest of the 12operating system. We haven't tried to duplicate complete 13descriptions of Perl features from the main Perl 14documentation, which can be found in the F<[.pod]> 15subdirectory of the Perl distribution. 16 17We hope these notes will save you from confusion and lost 18sleep when writing Perl scripts on VMS. If you find we've 19missed something you think should appear here, please don't 20hesitate to drop a line to vmsperl@perl.org. 21 22=head1 Installation 23 24Directions for building and installing Perl 5 can be found in 25the file F<README.vms> in the main source directory of the 26Perl distribution.. 27 28=head1 Organization of Perl Images 29 30=head2 Core Images 31 32During the installation process, three Perl images are produced. 33F<Miniperl.Exe> is an executable image which contains all of 34the basic functionality of Perl, but cannot take advantage of 35Perl extensions. It is used to generate several files needed 36to build the complete Perl and various extensions. Once you've 37finished installing Perl, you can delete this image. 38 39Most of the complete Perl resides in the shareable image 40F<PerlShr.Exe>, which provides a core to which the Perl executable 41image and all Perl extensions are linked. You should place this 42image in F<Sys$Share>, or define the logical name F<PerlShr> to 43translate to the full file specification of this image. It should 44be world readable. (Remember that if a user has execute only access 45to F<PerlShr>, VMS will treat it as if it were a privileged shareable 46image, and will therefore require all downstream shareable images to be 47INSTALLed, etc.) 48 49 50Finally, F<Perl.Exe> is an executable image containing the main 51entry point for Perl, as well as some initialization code. It 52should be placed in a public directory, and made world executable. 53In order to run Perl with command line arguments, you should 54define a foreign command to invoke this image. 55 56=head2 Perl Extensions 57 58Perl extensions are packages which provide both XS and Perl code 59to add new functionality to perl. (XS is a meta-language which 60simplifies writing C code which interacts with Perl, see 61L<perlxs> for more details.) The Perl code for an 62extension is treated like any other library module - it's 63made available in your script through the appropriate 64C<use> or C<require> statement, and usually defines a Perl 65package containing the extension. 66 67The portion of the extension provided by the XS code may be 68connected to the rest of Perl in either of two ways. In the 69B<static> configuration, the object code for the extension is 70linked directly into F<PerlShr.Exe>, and is initialized whenever 71Perl is invoked. In the B<dynamic> configuration, the extension's 72machine code is placed into a separate shareable image, which is 73mapped by Perl's DynaLoader when the extension is C<use>d or 74C<require>d in your script. This allows you to maintain the 75extension as a separate entity, at the cost of keeping track of the 76additional shareable image. Most extensions can be set up as either 77static or dynamic. 78 79The source code for an extension usually resides in its own 80directory. At least three files are generally provided: 81I<Extshortname>F<.xs> (where I<Extshortname> is the portion of 82the extension's name following the last C<::>), containing 83the XS code, I<Extshortname>F<.pm>, the Perl library module 84for the extension, and F<Makefile.PL>, a Perl script which uses 85the C<MakeMaker> library modules supplied with Perl to generate 86a F<Descrip.MMS> file for the extension. 87 88=head2 Installing static extensions 89 90Since static extensions are incorporated directly into 91F<PerlShr.Exe>, you'll have to rebuild Perl to incorporate a 92new extension. You should edit the main F<Descrip.MMS> or F<Makefile> 93you use to build Perl, adding the extension's name to the C<ext> 94macro, and the extension's object file to the C<extobj> macro. 95You'll also need to build the extension's object file, either 96by adding dependencies to the main F<Descrip.MMS>, or using a 97separate F<Descrip.MMS> for the extension. Then, rebuild 98F<PerlShr.Exe> to incorporate the new code. 99 100Finally, you'll need to copy the extension's Perl library 101module to the F<[.>I<Extname>F<]> subdirectory under one 102of the directories in C<@INC>, where I<Extname> is the name 103of the extension, with all C<::> replaced by C<.> (e.g. 104the library module for extension Foo::Bar would be copied 105to a F<[.Foo.Bar]> subdirectory). 106 107=head2 Installing dynamic extensions 108 109In general, the distributed kit for a Perl extension includes 110a file named Makefile.PL, which is a Perl program which is used 111to create a F<Descrip.MMS> file which can be used to build and 112install the files required by the extension. The kit should be 113unpacked into a directory tree B<not> under the main Perl source 114directory, and the procedure for building the extension is simply 115 116 $ perl Makefile.PL ! Create Descrip.MMS 117 $ mmk ! Build necessary files 118 $ mmk test ! Run test code, if supplied 119 $ mmk install ! Install into public Perl tree 120 121I<N.B.> The procedure by which extensions are built and 122tested creates several levels (at least 4) under the 123directory in which the extension's source files live. 124For this reason if you are running a version of VMS prior 125to V7.1 you shouldn't nest the source directory 126too deeply in your directory structure lest you exceed RMS' 127maximum of 8 levels of subdirectory in a filespec. (You 128can use rooted logical names to get another 8 levels of 129nesting, if you can't place the files near the top of 130the physical directory structure.) 131 132VMS support for this process in the current release of Perl 133is sufficient to handle most extensions. However, it does 134not yet recognize extra libraries required to build shareable 135images which are part of an extension, so these must be added 136to the linker options file for the extension by hand. For 137instance, if the F<PGPLOT> extension to Perl requires the 138F<PGPLOTSHR.EXE> shareable image in order to properly link 139the Perl extension, then the line C<PGPLOTSHR/Share> must 140be added to the linker options file F<PGPLOT.Opt> produced 141during the build process for the Perl extension. 142 143By default, the shareable image for an extension is placed in 144the F<[.lib.site_perl.auto>I<Arch>.I<Extname>F<]> directory of the 145installed Perl directory tree (where I<Arch> is F<VMS_VAX> or 146F<VMS_AXP>, and I<Extname> is the name of the extension, with 147each C<::> translated to C<.>). (See the MakeMaker documentation 148for more details on installation options for extensions.) 149However, it can be manually placed in any of several locations: 150 151=over 4 152 153=item * 154 155the F<[.Lib.Auto.>I<Arch>I<$PVers>I<Extname>F<]> subdirectory 156of one of the directories in C<@INC> (where I<PVers> 157is the version of Perl you're using, as supplied in C<$]>, 158with '.' converted to '_'), or 159 160=item * 161 162one of the directories in C<@INC>, or 163 164=item * 165 166a directory which the extensions Perl library module 167passes to the DynaLoader when asking it to map 168the shareable image, or 169 170=item * 171 172F<Sys$Share> or F<Sys$Library>. 173 174=back 175 176If the shareable image isn't in any of these places, you'll need 177to define a logical name I<Extshortname>, where I<Extshortname> 178is the portion of the extension's name after the last C<::>, which 179translates to the full file specification of the shareable image. 180 181=head1 File specifications 182 183=head2 Syntax 184 185We have tried to make Perl aware of both VMS-style and Unix-style file 186specifications wherever possible. You may use either style, or both, 187on the command line and in scripts, but you may not combine the two 188styles within a single file specification. VMS Perl interprets Unix 189pathnames in much the same way as the CRTL (I<e.g.> the first component 190of an absolute path is read as the device name for the VMS file 191specification). There are a set of functions provided in the 192C<VMS::Filespec> package for explicit interconversion between VMS and 193Unix syntax; its documentation provides more details. 194 195We've tried to minimize the dependence of Perl library 196modules on Unix syntax, but you may find that some of these, 197as well as some scripts written for Unix systems, will 198require that you use Unix syntax, since they will assume that 199'/' is the directory separator, I<etc.> If you find instances 200of this in the Perl distribution itself, please let us know, 201so we can try to work around them. 202 203Also when working on Perl programs on VMS, if you need a syntax 204in a specific operating system format, then you need either to 205check the appropriate DECC$ feature logical, or call a conversion 206routine to force it to that format. 207 208The feature logical name DECC$FILENAME_UNIX_REPORT modifies traditional 209Perl behavior in the conversion of file specifications from Unix to VMS 210format in order to follow the extended character handling rules now 211expected by the CRTL. Specifically, when this feature is in effect, the 212C<./.../> in a Unix path is now translated to C<[.^.^.^.]> instead of 213the traditional VMS C<[...]>. To be compatible with what MakeMaker 214expects, if a VMS path cannot be translated to a Unix path, it is 215passed through unchanged, so C<unixify("[...]")> will return C<[...]>. 216 217The handling of extended characters is largely complete in the 218VMS-specific C infrastructure of Perl, but more work is still needed to 219fully support extended syntax filenames in several core modules. In 220particular, at this writing PathTools has only partial support for 221directories containing some extended characters. 222 223There are several ambiguous cases where a conversion routine cannot 224determine whether an input filename is in Unix format or in VMS format, 225since now both VMS and Unix file specifications may have characters in 226them that could be mistaken for syntax delimiters of the other type. So 227some pathnames simply cannot be used in a mode that allows either type 228of pathname to be present. Perl will tend to assume that an ambiguous 229filename is in Unix format. 230 231Allowing "." as a version delimiter is simply incompatible with 232determining whether a pathname is in VMS format or in Unix format with 233extended file syntax. There is no way to know whether "perl-5.8.6" is a 234Unix "perl-5.8.6" or a VMS "perl-5.8;6" when passing it to unixify() or 235vmsify(). 236 237The DECC$FILENAME_UNIX_REPORT logical name controls how Perl interprets 238filenames to the extent that Perl uses the CRTL internally for many 239purposes, and attempts to follow CRTL conventions for reporting 240filenames. The DECC$FILENAME_UNIX_ONLY feature differs in that it 241expects all filenames passed to the C run-time to be already in Unix 242format. This feature is not yet supported in Perl since Perl uses 243traditional OpenVMS file specifications internally and in the test 244harness, and it is not yet clear whether this mode will be useful or 245useable. The feature logical name DECC$POSIX_COMPLIANT_PATHNAMES is new 246with the RMS Symbolic Link SDK and included with OpenVMS v8.3, but is 247not yet supported in Perl. 248 249=head2 Filename Case 250 251Perl follows VMS defaults and override settings in preserving (or not 252preserving) filename case. Case is not preserved on ODS-2 formatted 253volumes on any architecture. On ODS-5 volumes, filenames may be case 254preserved depending on process and feature settings. Perl now honors 255DECC$EFS_CASE_PRESERVE and DECC$ARGV_PARSE_STYLE on those systems where 256the CRTL supports these features. When these features are not enabled 257or the CRTL does not support them, Perl follows the traditional CRTL 258behavior of downcasing command-line arguments and returning file 259specifications in lower case only. 260 261I<N. B.> It is very easy to get tripped up using a mixture of other 262programs, external utilities, and Perl scripts that are in varying 263states of being able to handle case preservation. For example, a file 264created by an older version of an archive utility or a build utility 265such as MMK or MMS may generate a filename in all upper case even on an 266ODS-5 volume. If this filename is later retrieved by a Perl script or 267module in a case preserving environment, that upper case name may not 268match the mixed-case or lower-case exceptions of the Perl code. Your 269best bet is to follow an all-or-nothing approach to case preservation: 270either don't use it at all, or make sure your entire toolchain and 271application environment support and use it. 272 273OpenVMS Alpha v7.3-1 and later and all version of OpenVMS I64 support 274case sensitivity as a process setting (see C<SET PROCESS 275/CASE_LOOKUP=SENSITIVE>). Perl does not currently support case 276sensitivity on VMS, but it may in the future, so Perl programs should 277use the C<< File::Spec->case_tolerant >> method to determine the state, and 278not the C<$^O> variable. 279 280=head2 Symbolic Links 281 282When built on an ODS-5 volume with symbolic links enabled, Perl by 283default supports symbolic links when the requisite support is available 284in the filesystem and CRTL (generally 64-bit OpenVMS v8.3 and later). 285There are a number of limitations and caveats to be aware of when 286working with symbolic links on VMS. Most notably, the target of a valid 287symbolic link must be expressed as a Unix-style path and it must exist 288on a volume visible from your POSIX root (see the C<SHOW ROOT> command 289in DCL help). For further details on symbolic link capabilities and 290requirements, see chapter 12 of the CRTL manual that ships with OpenVMS 291v8.3 or later. 292 293=head2 Wildcard expansion 294 295File specifications containing wildcards are allowed both on 296the command line and within Perl globs (e.g. C<E<lt>*.cE<gt>>). If 297the wildcard filespec uses VMS syntax, the resultant 298filespecs will follow VMS syntax; if a Unix-style filespec is 299passed in, Unix-style filespecs will be returned. 300Similar to the behavior of wildcard globbing for a Unix shell, 301one can escape command line wildcards with double quotation 302marks C<"> around a perl program command line argument. However, 303owing to the stripping of C<"> characters carried out by the C 304handling of argv you will need to escape a construct such as 305this one (in a directory containing the files F<PERL.C>, F<PERL.EXE>, 306F<PERL.H>, and F<PERL.OBJ>): 307 308 $ perl -e "print join(' ',@ARGV)" perl.* 309 perl.c perl.exe perl.h perl.obj 310 311in the following triple quoted manner: 312 313 $ perl -e "print join(' ',@ARGV)" """perl.*""" 314 perl.* 315 316In both the case of unquoted command line arguments or in calls 317to C<glob()> VMS wildcard expansion is performed. (csh-style 318wildcard expansion is available if you use C<File::Glob::glob>.) 319If the wildcard filespec contains a device or directory 320specification, then the resultant filespecs will also contain 321a device and directory; otherwise, device and directory 322information are removed. VMS-style resultant filespecs will 323contain a full device and directory, while Unix-style 324resultant filespecs will contain only as much of a directory 325path as was present in the input filespec. For example, if 326your default directory is Perl_Root:[000000], the expansion 327of C<[.t]*.*> will yield filespecs like 328"perl_root:[t]base.dir", while the expansion of C<t/*/*> will 329yield filespecs like "t/base.dir". (This is done to match 330the behavior of glob expansion performed by Unix shells.) 331 332Similarly, the resultant filespec will contain the file version 333only if one was present in the input filespec. 334 335 336=head2 Pipes 337 338Input and output pipes to Perl filehandles are supported; the 339"file name" is passed to lib$spawn() for asynchronous 340execution. You should be careful to close any pipes you have 341opened in a Perl script, lest you leave any "orphaned" 342subprocesses around when Perl exits. 343 344You may also use backticks to invoke a DCL subprocess, whose 345output is used as the return value of the expression. The 346string between the backticks is handled as if it were the 347argument to the C<system> operator (see below). In this case, 348Perl will wait for the subprocess to complete before continuing. 349 350The mailbox (MBX) that perl can create to communicate with a pipe 351defaults to a buffer size of 8192 on 64-bit systems, 512 on VAX. The 352default buffer size is adjustable via the logical name PERL_MBX_SIZE 353provided that the value falls between 128 and the SYSGEN parameter 354MAXBUF inclusive. For example, to set the mailbox size to 32767 use 355C<$ENV{'PERL_MBX_SIZE'} = 32767;> and then open and use pipe constructs. 356An alternative would be to issue the command: 357 358 $ Define PERL_MBX_SIZE 32767 359 360before running your wide record pipe program. A larger value may 361improve performance at the expense of the BYTLM UAF quota. 362 363=head1 PERL5LIB and PERLLIB 364 365The PERL5LIB and PERLLIB logical names work as documented in L<perl>, 366except that the element separator is '|' instead of ':'. The 367directory specifications may use either VMS or Unix syntax. 368 369=head1 The Perl Forked Debugger 370 371The Perl forked debugger places the debugger commands and output in a 372separate X-11 terminal window so that commands and output from multiple 373processes are not mixed together. 374 375Perl on VMS supports an emulation of the forked debugger when Perl is 376run on a VMS system that has X11 support installed. 377 378To use the forked debugger, you need to have the default display set to an 379X-11 Server and some environment variables set that Unix expects. 380 381The forked debugger requires the environment variable C<TERM> to be C<xterm>, 382and the environment variable C<DISPLAY> to exist. C<xterm> must be in 383lower case. 384 385 $define TERM "xterm" 386 387 $define DISPLAY "hostname:0.0" 388 389Currently the value of C<DISPLAY> is ignored. It is recommended that it be set 390to be the hostname of the display, the server and screen in Unix notation. In 391the future the value of DISPLAY may be honored by Perl instead of using the 392default display. 393 394It may be helpful to always use the forked debugger so that script I/O is 395separated from debugger I/O. You can force the debugger to be forked by 396assigning a value to the logical name <PERLDB_PIDS> that is not a process 397identification number. 398 399 $define PERLDB_PIDS XXXX 400 401 402=head1 PERL_VMS_EXCEPTION_DEBUG 403 404The PERL_VMS_EXCEPTION_DEBUG being defined as "ENABLE" will cause the VMS 405debugger to be invoked if a fatal exception that is not otherwise 406handled is raised. The purpose of this is to allow debugging of 407internal Perl problems that would cause such a condition. 408 409This allows the programmer to look at the execution stack and variables to 410find out the cause of the exception. As the debugger is being invoked as 411the Perl interpreter is about to do a fatal exit, continuing the execution 412in debug mode is usually not practical. 413 414Starting Perl in the VMS debugger may change the program execution 415profile in a way that such problems are not reproduced. 416 417The C<kill> function can be used to test this functionality from within 418a program. 419 420In typical VMS style, only the first letter of the value of this logical 421name is actually checked in a case insensitive mode, and it is considered 422enabled if it is the value "T","1" or "E". 423 424This logical name must be defined before Perl is started. 425 426=head1 Command line 427 428=head2 I/O redirection and backgrounding 429 430Perl for VMS supports redirection of input and output on the 431command line, using a subset of Bourne shell syntax: 432 433=over 4 434 435=item * 436 437C<E<lt>file> reads stdin from C<file>, 438 439=item * 440 441C<E<gt>file> writes stdout to C<file>, 442 443=item * 444 445C<E<gt>E<gt>file> appends stdout to C<file>, 446 447=item * 448 449C<2E<gt>file> writes stderr to C<file>, 450 451=item * 452 453C<2E<gt>E<gt>file> appends stderr to C<file>, and 454 455=item * 456 457C<< 2>&1 >> redirects stderr to stdout. 458 459=back 460 461In addition, output may be piped to a subprocess, using the 462character '|'. Anything after this character on the command 463line is passed to a subprocess for execution; the subprocess 464takes the output of Perl as its input. 465 466Finally, if the command line ends with '&', the entire 467command is run in the background as an asynchronous 468subprocess. 469 470=head2 Command line switches 471 472The following command line switches behave differently under 473VMS than described in L<perlrun>. Note also that in order 474to pass uppercase switches to Perl, you need to enclose 475them in double-quotes on the command line, since the CRTL 476downcases all unquoted strings. 477 478On newer 64 bit versions of OpenVMS, a process setting now 479controls if the quoting is needed to preserve the case of 480command line arguments. 481 482=over 4 483 484=item -i 485 486If the C<-i> switch is present but no extension for a backup 487copy is given, then inplace editing creates a new version of 488a file; the existing copy is not deleted. (Note that if 489an extension is given, an existing file is renamed to the backup 490file, as is the case under other operating systems, so it does 491not remain as a previous version under the original filename.) 492 493=item -S 494 495If the C<"-S"> or C<-"S"> switch is present I<and> the script 496name does not contain a directory, then Perl translates the 497logical name DCL$PATH as a searchlist, using each translation 498as a directory in which to look for the script. In addition, 499if no file type is specified, Perl looks in each directory 500for a file matching the name specified, with a blank type, 501a type of F<.pl>, and a type of F<.com>, in that order. 502 503=item -u 504 505The C<-u> switch causes the VMS debugger to be invoked 506after the Perl program is compiled, but before it has 507run. It does not create a core dump file. 508 509=back 510 511=head1 Perl functions 512 513As of the time this document was last revised, the following 514Perl functions were implemented in the VMS port of Perl 515(functions marked with * are discussed in more detail below): 516 517 file tests*, abs, alarm, atan, backticks*, binmode*, bless, 518 caller, chdir, chmod, chown, chomp, chop, chr, 519 close, closedir, cos, crypt*, defined, delete, die, do, dump*, 520 each, endgrent, endpwent, eof, eval, exec*, exists, exit, exp, 521 fileno, flock getc, getgrent*, getgrgid*, getgrnam, getlogin, 522 getppid, getpwent*, getpwnam*, getpwuid*, glob, gmtime*, goto, 523 grep, hex, ioctl, import, index, int, join, keys, kill*, 524 last, lc, lcfirst, lchown*, length, link*, local, localtime, log, 525 lstat, m//, map, mkdir, my, next, no, oct, open, opendir, ord, 526 pack, pipe, pop, pos, print, printf, push, q//, qq//, qw//, 527 qx//*, quotemeta, rand, read, readdir, readlink*, redo, ref, 528 rename, require, reset, return, reverse, rewinddir, rindex, 529 rmdir, s///, scalar, seek, seekdir, select(internal), 530 select (system call)*, setgrent, setpwent, shift, sin, sleep, 531 socketpair, sort, splice, split, sprintf, sqrt, srand, stat, 532 study, substr, symlink*, sysread, system*, syswrite, tell, 533 telldir, tie, time, times*, tr///, uc, ucfirst, umask, 534 undef, unlink*, unpack, untie, unshift, use, utime*, 535 values, vec, wait, waitpid*, wantarray, warn, write, y/// 536 537The following functions were not implemented in the VMS port, 538and calling them produces a fatal error (usually) or 539undefined behavior (rarely, we hope): 540 541 chroot, dbmclose, dbmopen, fork*, getpgrp, getpriority, 542 msgctl, msgget, msgsend, msgrcv, semctl, 543 semget, semop, setpgrp, setpriority, shmctl, shmget, 544 shmread, shmwrite, syscall 545 546The following functions are available on Perls compiled with Dec C 5475.2 or greater and running VMS 7.0 or greater: 548 549 truncate 550 551The following functions are available on Perls built on VMS 7.2 or 552greater: 553 554 fcntl (without locking) 555 556The following functions may or may not be implemented, 557depending on what type of socket support you've built into 558your copy of Perl: 559 560 accept, bind, connect, getpeername, 561 gethostbyname, getnetbyname, getprotobyname, 562 getservbyname, gethostbyaddr, getnetbyaddr, 563 getprotobynumber, getservbyport, gethostent, 564 getnetent, getprotoent, getservent, sethostent, 565 setnetent, setprotoent, setservent, endhostent, 566 endnetent, endprotoent, endservent, getsockname, 567 getsockopt, listen, recv, select(system call)*, 568 send, setsockopt, shutdown, socket 569 570The following function is available on Perls built on 64 bit OpenVMS v8.2 571with hard links enabled on an ODS-5 formatted build disk. CRTL support 572is in principle available as of OpenVMS v7.3-1, and better configuration 573support could detect this. 574 575 link 576 577The following functions are available on Perls built on 64 bit OpenVMS 578v8.2 and later. CRTL support is in principle available as of OpenVMS 579v7.3-2, and better configuration support could detect this. 580 581 getgrgid, getgrnam, getpwnam, getpwuid, 582 setgrent, ttyname 583 584The following functions are available on Perls built on 64 bit OpenVMS v8.2 585and later. 586 587 statvfs, socketpair 588 589=over 4 590 591=item File tests 592 593The tests C<-b>, C<-B>, C<-c>, C<-C>, C<-d>, C<-e>, C<-f>, 594C<-o>, C<-M>, C<-s>, C<-S>, C<-t>, C<-T>, and C<-z> work as 595advertised. The return values for C<-r>, C<-w>, and C<-x> 596tell you whether you can actually access the file; this may 597not reflect the UIC-based file protections. Since real and 598effective UIC don't differ under VMS, C<-O>, C<-R>, C<-W>, 599and C<-X> are equivalent to C<-o>, C<-r>, C<-w>, and C<-x>. 600Similarly, several other tests, including C<-A>, C<-g>, C<-k>, 601C<-l>, C<-p>, and C<-u>, aren't particularly meaningful under 602VMS, and the values returned by these tests reflect whatever 603your CRTL C<stat()> routine does to the equivalent bits in the 604st_mode field. Finally, C<-d> returns true if passed a device 605specification without an explicit directory (e.g. C<DUA1:>), as 606well as if passed a directory. 607 608There are DECC feature logical names AND ODS-5 volume attributes that 609also control what values are returned for the date fields. 610 611Note: Some sites have reported problems when using the file-access 612tests (C<-r>, C<-w>, and C<-x>) on files accessed via DEC's DFS. 613Specifically, since DFS does not currently provide access to the 614extended file header of files on remote volumes, attempts to 615examine the ACL fail, and the file tests will return false, 616with C<$!> indicating that the file does not exist. You can 617use C<stat> on these files, since that checks UIC-based protection 618only, and then manually check the appropriate bits, as defined by 619your C compiler's F<stat.h>, in the mode value it returns, if you 620need an approximation of the file's protections. 621 622=item backticks 623 624Backticks create a subprocess, and pass the enclosed string 625to it for execution as a DCL command. Since the subprocess is 626created directly via C<lib$spawn()>, any valid DCL command string 627may be specified. 628 629=item binmode FILEHANDLE 630 631The C<binmode> operator will attempt to insure that no translation 632of carriage control occurs on input from or output to this filehandle. 633Since this involves reopening the file and then restoring its 634file position indicator, if this function returns FALSE, the 635underlying filehandle may no longer point to an open file, or may 636point to a different position in the file than before C<binmode> 637was called. 638 639Note that C<binmode> is generally not necessary when using normal 640filehandles; it is provided so that you can control I/O to existing 641record-structured files when necessary. You can also use the 642C<vmsfopen> function in the VMS::Stdio extension to gain finer 643control of I/O to files and devices with different record structures. 644 645=item crypt PLAINTEXT, USER 646 647The C<crypt> operator uses the C<sys$hash_password> system 648service to generate the hashed representation of PLAINTEXT. 649If USER is a valid username, the algorithm and salt values 650are taken from that user's UAF record. If it is not, then 651the preferred algorithm and a salt of 0 are used. The 652quadword encrypted value is returned as an 8-character string. 653 654The value returned by C<crypt> may be compared against 655the encrypted password from the UAF returned by the C<getpw*> 656functions, in order to authenticate users. If you're 657going to do this, remember that the encrypted password in 658the UAF was generated using uppercase username and 659password strings; you'll have to upcase the arguments to 660C<crypt> to insure that you'll get the proper value: 661 662 sub validate_passwd { 663 my($user,$passwd) = @_; 664 my($pwdhash); 665 if ( !($pwdhash = (getpwnam($user))[1]) || 666 $pwdhash ne crypt("\U$passwd","\U$name") ) { 667 intruder_alert($name); 668 } 669 return 1; 670 } 671 672 673=item die 674 675C<die> will force the native VMS exit status to be an SS$_ABORT code 676if neither of the $! or $? status values are ones that would cause 677the native status to be interpreted as being what VMS classifies as 678SEVERE_ERROR severity for DCL error handling. 679 680When C<PERL_VMS_POSIX_EXIT> is active (see L</"$?"> below), the native VMS exit 681status value will have either one of the C<$!> or C<$?> or C<$^E> or 682the Unix value 255 encoded into it in a way that the effective original 683value can be decoded by other programs written in C, including Perl 684and the GNV package. As per the normal non-VMS behavior of C<die> if 685either C<$!> or C<$?> are non-zero, one of those values will be 686encoded into a native VMS status value. If both of the Unix status 687values are 0, and the C<$^E> value is set one of ERROR or SEVERE_ERROR 688severity, then the C<$^E> value will be used as the exit code as is. 689If none of the above apply, the Unix value of 255 will be encoded into 690a native VMS exit status value. 691 692Please note a significant difference in the behavior of C<die> in 693the C<PERL_VMS_POSIX_EXIT> mode is that it does not force a VMS 694SEVERE_ERROR status on exit. The Unix exit values of 2 through 695255 will be encoded in VMS status values with severity levels of 696SUCCESS. The Unix exit value of 1 will be encoded in a VMS status 697value with a severity level of ERROR. This is to be compatible with 698how the VMS C library encodes these values. 699 700The minimum severity level set by C<die> in C<PERL_VMS_POSIX_EXIT> mode 701may be changed to be ERROR or higher in the future depending on the 702results of testing and further review. 703 704See L</"$?"> for a description of the encoding of the Unix value to 705produce a native VMS status containing it. 706 707=item dump 708 709Rather than causing Perl to abort and dump core, the C<dump> 710operator invokes the VMS debugger. If you continue to 711execute the Perl program under the debugger, control will 712be transferred to the label specified as the argument to 713C<dump>, or, if no label was specified, back to the 714beginning of the program. All other state of the program 715(I<e.g.> values of variables, open file handles) are not 716affected by calling C<dump>. 717 718=item exec LIST 719 720A call to C<exec> will cause Perl to exit, and to invoke the command 721given as an argument to C<exec> via C<lib$do_command>. If the 722argument begins with '@' or '$' (other than as part of a filespec), 723then it is executed as a DCL command. Otherwise, the first token on 724the command line is treated as the filespec of an image to run, and 725an attempt is made to invoke it (using F<.Exe> and the process 726defaults to expand the filespec) and pass the rest of C<exec>'s 727argument to it as parameters. If the token has no file type, and 728matches a file with null type, then an attempt is made to determine 729whether the file is an executable image which should be invoked 730using C<MCR> or a text file which should be passed to DCL as a 731command procedure. 732 733=item fork 734 735While in principle the C<fork> operator could be implemented via 736(and with the same rather severe limitations as) the CRTL C<vfork()> 737routine, and while some internal support to do just that is in 738place, the implementation has never been completed, making C<fork> 739currently unavailable. A true kernel C<fork()> is expected in a 740future version of VMS, and the pseudo-fork based on interpreter 741threads may be available in a future version of Perl on VMS (see 742L<perlfork>). In the meantime, use C<system>, backticks, or piped 743filehandles to create subprocesses. 744 745=item getpwent 746 747=item getpwnam 748 749=item getpwuid 750 751These operators obtain the information described in L<perlfunc>, 752if you have the privileges necessary to retrieve the named user's 753UAF information via C<sys$getuai>. If not, then only the C<$name>, 754C<$uid>, and C<$gid> items are returned. The C<$dir> item contains 755the login directory in VMS syntax, while the C<$comment> item 756contains the login directory in Unix syntax. The C<$gcos> item 757contains the owner field from the UAF record. The C<$quota> 758item is not used. 759 760=item gmtime 761 762The C<gmtime> operator will function properly if you have a 763working CRTL C<gmtime()> routine, or if the logical name 764SYS$TIMEZONE_DIFFERENTIAL is defined as the number of seconds 765which must be added to UTC to yield local time. (This logical 766name is defined automatically if you are running a version of 767VMS with built-in UTC support.) If neither of these cases is 768true, a warning message is printed, and C<undef> is returned. 769 770=item kill 771 772In most cases, C<kill> is implemented via the undocumented system 773service C<$SIGPRC>, which has the same calling sequence as C<$FORCEX>, but 774throws an exception in the target process rather than forcing it to call 775C<$EXIT>. Generally speaking, C<kill> follows the behavior of the 776CRTL's C<kill()> function, but unlike that function can be called from 777within a signal handler. Also, unlike the C<kill> in some versions of 778the CRTL, Perl's C<kill> checks the validity of the signal passed in and 779returns an error rather than attempting to send an unrecognized signal. 780 781Also, negative signal values don't do anything special under 782VMS; they're just converted to the corresponding positive value. 783 784=item qx// 785 786See the entry on C<backticks> above. 787 788=item select (system call) 789 790If Perl was not built with socket support, the system call 791version of C<select> is not available at all. If socket 792support is present, then the system call version of 793C<select> functions only for file descriptors attached 794to sockets. It will not provide information about regular 795files or pipes, since the CRTL C<select()> routine does not 796provide this functionality. 797 798=item stat EXPR 799 800Since VMS keeps track of files according to a different scheme 801than Unix, it's not really possible to represent the file's ID 802in the C<st_dev> and C<st_ino> fields of a C<struct stat>. Perl 803tries its best, though, and the values it uses are pretty unlikely 804to be the same for two different files. We can't guarantee this, 805though, so caveat scriptor. 806 807=item system LIST 808 809The C<system> operator creates a subprocess, and passes its 810arguments to the subprocess for execution as a DCL command. 811Since the subprocess is created directly via C<lib$spawn()>, any 812valid DCL command string may be specified. If the string begins with 813'@', it is treated as a DCL command unconditionally. Otherwise, if 814the first token contains a character used as a delimiter in file 815specification (e.g. C<:> or C<]>), an attempt is made to expand it 816using a default type of F<.Exe> and the process defaults, and if 817successful, the resulting file is invoked via C<MCR>. This allows you 818to invoke an image directly simply by passing the file specification 819to C<system>, a common Unixish idiom. If the token has no file type, 820and matches a file with null type, then an attempt is made to 821determine whether the file is an executable image which should be 822invoked using C<MCR> or a text file which should be passed to DCL 823as a command procedure. 824 825If LIST consists of the empty string, C<system> spawns an 826interactive DCL subprocess, in the same fashion as typing 827B<SPAWN> at the DCL prompt. 828 829Perl waits for the subprocess to complete before continuing 830execution in the current process. As described in L<perlfunc>, 831the return value of C<system> is a fake "status" which follows 832POSIX semantics unless the pragma C<use vmsish 'status'> is in 833effect; see the description of C<$?> in this document for more 834detail. 835 836=item time 837 838The value returned by C<time> is the offset in seconds from 83901-JAN-1970 00:00:00 (just like the CRTL's times() routine), in order 840to make life easier for code coming in from the POSIX/Unix world. 841 842=item times 843 844The array returned by the C<times> operator is divided up 845according to the same rules the CRTL C<times()> routine. 846Therefore, the "system time" elements will always be 0, since 847there is no difference between "user time" and "system" time 848under VMS, and the time accumulated by a subprocess may or may 849not appear separately in the "child time" field, depending on 850whether C<times()> keeps track of subprocesses separately. Note 851especially that the VAXCRTL (at least) keeps track only of 852subprocesses spawned using C<fork()> and C<exec()>; it will not 853accumulate the times of subprocesses spawned via pipes, C<system()>, 854or backticks. 855 856=item unlink LIST 857 858C<unlink> will delete the highest version of a file only; in 859order to delete all versions, you need to say 860 861 1 while unlink LIST; 862 863You may need to make this change to scripts written for a 864Unix system which expect that after a call to C<unlink>, 865no files with the names passed to C<unlink> will exist. 866(Note: This can be changed at compile time; if you 867C<use Config> and C<$Config{'d_unlink_all_versions'}> is 868C<define>, then C<unlink> will delete all versions of a 869file on the first call.) 870 871C<unlink> will delete a file if at all possible, even if it 872requires changing file protection (though it won't try to 873change the protection of the parent directory). You can tell 874whether you've got explicit delete access to a file by using the 875C<VMS::Filespec::candelete> operator. For instance, in order 876to delete only files to which you have delete access, you could 877say something like 878 879 sub safe_unlink { 880 my($file,$num); 881 foreach $file (@_) { 882 next unless VMS::Filespec::candelete($file); 883 $num += unlink $file; 884 } 885 $num; 886 } 887 888(or you could just use C<VMS::Stdio::remove>, if you've installed 889the VMS::Stdio extension distributed with Perl). If C<unlink> has to 890change the file protection to delete the file, and you interrupt it 891in midstream, the file may be left intact, but with a changed ACL 892allowing you delete access. 893 894This behavior of C<unlink> is to be compatible with POSIX behavior 895and not traditional VMS behavior. 896 897=item utime LIST 898 899This operator changes only the modification time of the file (VMS 900revision date) on ODS-2 volumes and ODS-5 volumes without access 901dates enabled. On ODS-5 volumes with access dates enabled, the 902true access time is modified. 903 904=item waitpid PID,FLAGS 905 906If PID is a subprocess started by a piped C<open()> (see L<open>), 907C<waitpid> will wait for that subprocess, and return its final status 908value in C<$?>. If PID is a subprocess created in some other way (e.g. 909SPAWNed before Perl was invoked), C<waitpid> will simply check once per 910second whether the process has completed, and return when it has. (If 911PID specifies a process that isn't a subprocess of the current process, 912and you invoked Perl with the C<-w> switch, a warning will be issued.) 913 914Returns PID on success, -1 on error. The FLAGS argument is ignored 915in all cases. 916 917=back 918 919=head1 Perl variables 920 921The following VMS-specific information applies to the indicated 922"special" Perl variables, in addition to the general information 923in L<perlvar>. Where there is a conflict, this information 924takes precedence. 925 926=over 4 927 928=item %ENV 929 930The operation of the C<%ENV> array depends on the translation 931of the logical name F<PERL_ENV_TABLES>. If defined, it should 932be a search list, each element of which specifies a location 933for C<%ENV> elements. If you tell Perl to read or set the 934element C<$ENV{>I<name>C<}>, then Perl uses the translations of 935F<PERL_ENV_TABLES> as follows: 936 937=over 4 938 939=item CRTL_ENV 940 941This string tells Perl to consult the CRTL's internal C<environ> 942array of key-value pairs, using I<name> as the key. In most cases, 943this contains only a few keys, but if Perl was invoked via the C 944C<exec[lv]e()> function, as is the case for CGI processing by some 945HTTP servers, then the C<environ> array may have been populated by 946the calling program. 947 948=item CLISYM_[LOCAL] 949 950A string beginning with C<CLISYM_>tells Perl to consult the CLI's 951symbol tables, using I<name> as the name of the symbol. When reading 952an element of C<%ENV>, the local symbol table is scanned first, followed 953by the global symbol table.. The characters following C<CLISYM_> are 954significant when an element of C<%ENV> is set or deleted: if the 955complete string is C<CLISYM_LOCAL>, the change is made in the local 956symbol table; otherwise the global symbol table is changed. 957 958=item Any other string 959 960If an element of F<PERL_ENV_TABLES> translates to any other string, 961that string is used as the name of a logical name table, which is 962consulted using I<name> as the logical name. The normal search 963order of access modes is used. 964 965=back 966 967F<PERL_ENV_TABLES> is translated once when Perl starts up; any changes 968you make while Perl is running do not affect the behavior of C<%ENV>. 969If F<PERL_ENV_TABLES> is not defined, then Perl defaults to consulting 970first the logical name tables specified by F<LNM$FILE_DEV>, and then 971the CRTL C<environ> array. 972 973In all operations on %ENV, the key string is treated as if it 974were entirely uppercase, regardless of the case actually 975specified in the Perl expression. 976 977When an element of C<%ENV> is read, the locations to which 978F<PERL_ENV_TABLES> points are checked in order, and the value 979obtained from the first successful lookup is returned. If the 980name of the C<%ENV> element contains a semi-colon, it and 981any characters after it are removed. These are ignored when 982the CRTL C<environ> array or a CLI symbol table is consulted. 983However, the name is looked up in a logical name table, the 984suffix after the semi-colon is treated as the translation index 985to be used for the lookup. This lets you look up successive values 986for search list logical names. For instance, if you say 987 988 $ Define STORY once,upon,a,time,there,was 989 $ perl -e "for ($i = 0; $i <= 6; $i++) " - 990 _$ -e "{ print $ENV{'story;'.$i},' '}" 991 992Perl will print C<ONCE UPON A TIME THERE WAS>, assuming, of course, 993that F<PERL_ENV_TABLES> is set up so that the logical name C<story> 994is found, rather than a CLI symbol or CRTL C<environ> element with 995the same name. 996 997When an element of C<%ENV> is set to a defined string, the 998corresponding definition is made in the location to which the 999first translation of F<PERL_ENV_TABLES> points. If this causes a 1000logical name to be created, it is defined in supervisor mode. 1001(The same is done if an existing logical name was defined in 1002executive or kernel mode; an existing user or supervisor mode 1003logical name is reset to the new value.) If the value is an empty 1004string, the logical name's translation is defined as a single C<NUL> 1005(ASCII C<\0>) character, since a logical name cannot translate to a 1006zero-length string. (This restriction does not apply to CLI symbols 1007or CRTL C<environ> values; they are set to the empty string.) 1008An element of the CRTL C<environ> array can be set only if your 1009copy of Perl knows about the CRTL's C<setenv()> function. (This is 1010present only in some versions of the DECCRTL; check C<$Config{d_setenv}> 1011to see whether your copy of Perl was built with a CRTL that has this 1012function.) 1013 1014When an element of C<%ENV> is set to C<undef>, 1015the element is looked up as if it were being read, and if it is 1016found, it is deleted. (An item "deleted" from the CRTL C<environ> 1017array is set to the empty string; this can only be done if your 1018copy of Perl knows about the CRTL C<setenv()> function.) Using 1019C<delete> to remove an element from C<%ENV> has a similar effect, 1020but after the element is deleted, another attempt is made to 1021look up the element, so an inner-mode logical name or a name in 1022another location will replace the logical name just deleted. 1023In either case, only the first value found searching PERL_ENV_TABLES 1024is altered. It is not possible at present to define a search list 1025logical name via %ENV. 1026 1027The element C<$ENV{DEFAULT}> is special: when read, it returns 1028Perl's current default device and directory, and when set, it 1029resets them, regardless of the definition of F<PERL_ENV_TABLES>. 1030It cannot be cleared or deleted; attempts to do so are silently 1031ignored. 1032 1033Note that if you want to pass on any elements of the 1034C-local environ array to a subprocess which isn't 1035started by fork/exec, or isn't running a C program, you 1036can "promote" them to logical names in the current 1037process, which will then be inherited by all subprocesses, 1038by saying 1039 1040 foreach my $key (qw[C-local keys you want promoted]) { 1041 my $temp = $ENV{$key}; # read from C-local array 1042 $ENV{$key} = $temp; # and define as logical name 1043 } 1044 1045(You can't just say C<$ENV{$key} = $ENV{$key}>, since the 1046Perl optimizer is smart enough to elide the expression.) 1047 1048Don't try to clear C<%ENV> by saying C<%ENV = ();>, it will throw 1049a fatal error. This is equivalent to doing the following from DCL: 1050 1051 DELETE/LOGICAL * 1052 1053You can imagine how bad things would be if, for example, the SYS$MANAGER 1054or SYS$SYSTEM logical names were deleted. 1055 1056At present, the first time you iterate over %ENV using 1057C<keys>, or C<values>, you will incur a time penalty as all 1058logical names are read, in order to fully populate %ENV. 1059Subsequent iterations will not reread logical names, so they 1060won't be as slow, but they also won't reflect any changes 1061to logical name tables caused by other programs. 1062 1063You do need to be careful with the logical names representing 1064process-permanent files, such as C<SYS$INPUT> and C<SYS$OUTPUT>. 1065The translations for these logical names are prepended with a 1066two-byte binary value (0x1B 0x00) that needs to be stripped off 1067if you want to use it. (In previous versions of Perl it wasn't 1068possible to get the values of these logical names, as the null 1069byte acted as an end-of-string marker) 1070 1071=item $! 1072 1073The string value of C<$!> is that returned by the CRTL's 1074strerror() function, so it will include the VMS message for 1075VMS-specific errors. The numeric value of C<$!> is the 1076value of C<errno>, except if errno is EVMSERR, in which 1077case C<$!> contains the value of vaxc$errno. Setting C<$!> 1078always sets errno to the value specified. If this value is 1079EVMSERR, it also sets vaxc$errno to 4 (NONAME-F-NOMSG), so 1080that the string value of C<$!> won't reflect the VMS error 1081message from before C<$!> was set. 1082 1083=item $^E 1084 1085This variable provides direct access to VMS status values 1086in vaxc$errno, which are often more specific than the 1087generic Unix-style error messages in C<$!>. Its numeric value 1088is the value of vaxc$errno, and its string value is the 1089corresponding VMS message string, as retrieved by sys$getmsg(). 1090Setting C<$^E> sets vaxc$errno to the value specified. 1091 1092While Perl attempts to keep the vaxc$errno value to be current, if 1093errno is not EVMSERR, it may not be from the current operation. 1094 1095=item $? 1096 1097The "status value" returned in C<$?> is synthesized from the 1098actual exit status of the subprocess in a way that approximates 1099POSIX wait(5) semantics, in order to allow Perl programs to 1100portably test for successful completion of subprocesses. The 1101low order 8 bits of C<$?> are always 0 under VMS, since the 1102termination status of a process may or may not have been 1103generated by an exception. 1104 1105The next 8 bits contain the termination status of the program. 1106 1107If the child process follows the convention of C programs 1108compiled with the _POSIX_EXIT macro set, the status value will 1109contain the actual value of 0 to 255 returned by that program 1110on a normal exit. 1111 1112With the _POSIX_EXIT macro set, the Unix exit value of zero is 1113represented as a VMS native status of 1, and the Unix values 1114from 2 to 255 are encoded by the equation: 1115 1116 VMS_status = 0x35a000 + (unix_value * 8) + 1. 1117 1118And in the special case of Unix value 1 the encoding is: 1119 1120 VMS_status = 0x35a000 + 8 + 2 + 0x10000000. 1121 1122For other termination statuses, the severity portion of the 1123subprocess's exit status is used: if the severity was success or 1124informational, these bits are all 0; if the severity was 1125warning, they contain a value of 1; if the severity was 1126error or fatal error, they contain the actual severity bits, 1127which turns out to be a value of 2 for error and 4 for severe_error. 1128Fatal is another term for the severe_error status. 1129 1130As a result, C<$?> will always be zero if the subprocess's exit 1131status indicated successful completion, and non-zero if a 1132warning or error occurred or a program compliant with encoding 1133_POSIX_EXIT values was run and set a status. 1134 1135How can you tell the difference between a non-zero status that is 1136the result of a VMS native error status or an encoded Unix status? 1137You can not unless you look at the ${^CHILD_ERROR_NATIVE} value. 1138The ${^CHILD_ERROR_NATIVE} value returns the actual VMS status value 1139and check the severity bits. If the severity bits are equal to 1, 1140then if the numeric value for C<$?> is between 2 and 255 or 0, then 1141C<$?> accurately reflects a value passed back from a Unix application. 1142If C<$?> is 1, and the severity bits indicate a VMS error (2), then 1143C<$?> is from a Unix application exit value. 1144 1145In practice, Perl scripts that call programs that return _POSIX_EXIT 1146type status values will be expecting those values, and programs that 1147call traditional VMS programs will either be expecting the previous 1148behavior or just checking for a non-zero status. 1149 1150And success is always the value 0 in all behaviors. 1151 1152When the actual VMS termination status of the child is an error, 1153internally the C<$!> value will be set to the closest Unix errno 1154value to that error so that Perl scripts that test for error 1155messages will see the expected Unix style error message instead 1156of a VMS message. 1157 1158Conversely, when setting C<$?> in an END block, an attempt is made 1159to convert the POSIX value into a native status intelligible to 1160the operating system upon exiting Perl. What this boils down to 1161is that setting C<$?> to zero results in the generic success value 1162SS$_NORMAL, and setting C<$?> to a non-zero value results in the 1163generic failure status SS$_ABORT. See also L<perlport/exit>. 1164 1165With the C<PERL_VMS_POSIX_EXIT> logical name defined as "ENABLE", 1166setting C<$?> will cause the new value to be encoded into C<$^E> 1167so that either the original parent or child exit status values 1168 0 to 255 can be automatically recovered by C programs expecting 1169_POSIX_EXIT behavior. If both a parent and a child exit value are 1170non-zero, then it will be assumed that this is actually a VMS native 1171status value to be passed through. The special value of 0xFFFF is 1172almost a NOOP as it will cause the current native VMS status in the 1173C library to become the current native Perl VMS status, and is handled 1174this way as it is known to not be a valid native VMS status value. 1175It is recommend that only values in the range of normal Unix parent or 1176child status numbers, 0 to 255 are used. 1177 1178The pragma C<use vmsish 'status'> makes C<$?> reflect the actual 1179VMS exit status instead of the default emulation of POSIX status 1180described above. This pragma also disables the conversion of 1181non-zero values to SS$_ABORT when setting C<$?> in an END 1182block (but zero will still be converted to SS$_NORMAL). 1183 1184Do not use the pragma C<use vmsish 'status'> with C<PERL_VMS_POSIX_EXIT> 1185enabled, as they are at times requesting conflicting actions and the 1186consequence of ignoring this advice will be undefined to allow future 1187improvements in the POSIX exit handling. 1188 1189In general, with C<PERL_VMS_POSIX_EXIT> enabled, more detailed information 1190will be available in the exit status for DCL scripts or other native VMS tools, 1191and will give the expected information for Posix programs. It has not been 1192made the default in order to preserve backward compatibility. 1193 1194N.B. Setting C<DECC$FILENAME_UNIX_REPORT> implicitly enables 1195C<PERL_VMS_POSIX_EXIT>. 1196 1197=item $| 1198 1199Setting C<$|> for an I/O stream causes data to be flushed 1200all the way to disk on each write (I<i.e.> not just to 1201the underlying RMS buffers for a file). In other words, 1202it's equivalent to calling fflush() and fsync() from C. 1203 1204=back 1205 1206=head1 Standard modules with VMS-specific differences 1207 1208=head2 SDBM_File 1209 1210SDBM_File works properly on VMS. It has, however, one minor 1211difference. The database directory file created has a F<.sdbm_dir> 1212extension rather than a F<.dir> extension. F<.dir> files are VMS filesystem 1213directory files, and using them for other purposes could cause unacceptable 1214problems. 1215 1216=head1 Revision date 1217 1218Please see the git repository for revision history. 1219 1220=head1 AUTHOR 1221 1222Charles Bailey bailey@cor.newman.upenn.edu 1223Craig Berry craigberry@mac.com 1224Dan Sugalski dan@sidhe.org 1225John Malmberg wb8tyw@qsl.net 1226