home *** CD-ROM | disk | FTP | other *** search
/ ftp.pasteur.org/FAQ/ / ftp-pasteur-org-FAQ.zip / FAQ / perl-faq / part1 < prev    next >
Internet Message Format  |  1996-01-28  |  46KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!apollo.hp.com!lf.hp.com!news.dtc.hp.com!canyon.sr.hp.com!col.hp.com!usenet.eel.ufl.edu!usenet.cis.ufl.edu!purdue!lerc.nasa.gov!magnus.acs.ohio-state.edu!math.ohio-state.edu!uwm.edu!vixen.cso.uiuc.edu!newsfeed.internetmci.com!in2.uu.net!news1.radix.net!news1.radix.net!spp
  2. From: spp@psa.pencom.com
  3. Newsgroups: comp.lang.perl.announce,comp.lang.perl.misc,comp.answers,news.answers
  4. Subject: comp.lang.perl.* FAQ 1/5 - Availability
  5. Followup-To: poster
  6. Date: 27 Jan 1996 01:21:47 GMT
  7. Organization: Pencom Systems Incorporated
  8. Lines: 958
  9. Approved: news-answers-request@MIT.EDU
  10. Distribution: world
  11. Message-ID: <SPP.96Jan26202147@syrinx.hideout.com>
  12. NNTP-Posting-Host: dialin23.annex1.radix.net
  13. Xref: senator-bedfellow.mit.edu comp.lang.perl.announce:237 comp.lang.perl.misc:18450 comp.answers:16654 news.answers:63089
  14.  
  15.  
  16. Archive-name: perl-faq/part1
  17. Version: $Id: part1,v 2.9 1995/05/15 15:44:17 spp Exp spp $
  18. Posting-Frequency: bi-weekly
  19. Last Edited: Thu Jan 11 00:53:46 1996 by spp (Stephen P Potter) on syrinx.psa.com
  20.  
  21. This posting contains answers to general information and availability
  22. questions.  The following questions are answered in this posting: 
  23.  
  24.  
  25. 1.1) What is Perl?
  26.     
  27.     Perl is a compiled scripting language written by Larry Wall*.
  28.  
  29.     Here's the beginning of the description from the perl(1) man page:
  30.  
  31.     Perl is an interpreted language optimized for scanning arbi-
  32.     trary  text  files,  extracting  information from those text
  33.     files, and printing reports based on that information.  It's
  34.     also  a good language for many system management tasks.  The
  35.     language is intended to be practical  (easy  to  use,  effi-
  36.     cient,  complete)  rather  than  beautiful  (tiny,  elegant,
  37.     minimal).  It combines (in  the  author's  opinion,  anyway)
  38.     some  of the best features of C, sed, awk, and sh, so people
  39.     familiar with those languages should have little  difficulty
  40.     with  it.  (Language historians will also note some vestiges
  41.     of csh, Pascal,  and  even  BASIC-PLUS.)  Expression  syntax
  42.     corresponds  quite  closely  to C expression syntax.  Unlike
  43.         most Unix utilities, perl does  not  arbitrarily  limit  the
  44.     size  of your data--if you've got the memory, perl can slurp
  45.         in your whole file as a  single  string.   Recursion  is  of
  46.     unlimited  depth.   And  the hash tables used by associative
  47.         arrays grow as necessary to  prevent  degraded  performance.
  48.     Perl  uses sophisticated pattern matching techniques to scan
  49.         large amounts of data very quickly.  Although optimized  for
  50.     scanning  text, perl can also deal with binary data, and can
  51.         make dbm files look like associative arrays  (where  dbm  is
  52.     available).   Setuid  perl scripts are safer than C programs
  53.         through a dataflow tracing  mechanism  which  prevents  many
  54.     stupid  security  holes.   If  you have a problem that would
  55.         ordinarily use sed or awk or sh, but it exceeds their  capa-
  56.     bilities  or must run a little faster, and you don't want to
  57.         write the silly thing in C, then perl may be for you.  There
  58.     are  also  translators to turn your sed and awk scripts into
  59.         perl scripts.  OK, enough hype.
  60.  
  61.  
  62. 1.2) What are perl4 and perl5, are there any differences?
  63.  
  64.     Perl4 and perl5 are different versions of the language.  Perl4 was the
  65.     previous release, and perl5 is "Perl: The Next Generation."
  66.     Perl5 is, essentially, a complete rewrite of the perl source code
  67.     from the ground up.  It has been modularized, object oriented, 
  68.     tweaked, trimmed, and optimized until it almost doesn't look like
  69.     the old code.  However, the interface is mostly the same, and
  70.     compatibility with previous releases is very high.
  71.  
  72.  
  73. 1.3) What features does perl5 provide over perl4?
  74.  
  75.     If you get the newest source (from any of the main FTP sites), you will
  76.     find a directory full of man pages (possibly to be installed as section
  77.     1p and 3pm) that discuss the differences, new features, old
  78.     incompatibilies and much more.  Here, however, are some highlights as
  79.     to the new features and old incompatibilities.
  80.  
  81.     * Enhanced Usability:  Perl code can now be written in a much more
  82.     legible style.  Regular expressions have been enhanced to allow
  83.     minimal matches, conditionals, and much more.  Cryptic variable
  84.     names (although still supported) have been aliased to new
  85.         nmemonics, using the "English" module, allowing old scripts to run
  86.         and new scripts to be readable.  Error messages and optional
  87.         warnings are more informative and will catch many common mistakes.
  88.         See the perldiag(1) man page, which contains pithy prose from Larry
  89.         Wall* on each and every possible muttering perl might spout at you.
  90.     * Simplified Grammar:  The new yacc grammar is one half the size of
  91.     the old one.  Many of the arbitrary grammar rules have been
  92.     regularized.  The number of reserved words has been cut by 2/3.
  93.     * Lexical Scoping:  Perl variables may now be declared within a
  94.     lexical scope, similar to C's "auto" variables.  This is a
  95.     great improvement on efficiency and contributes to better
  96.     privacy.  See the my() entry in perlfunc(1).
  97.     * Arbitrarily nested data structures:  Full fledged multidimensional
  98.     arrays.  Any scalar value, including an array element, may now
  99.     contain a reference to any other variable or subroutine.
  100.     Easily created anonymous variables and subroutines.  See
  101.         perlref(1).
  102.     * Modularity and Reusability:  The Perl library is now defined in
  103.     terms of modules which can be easily shared among various
  104.     packages.  Packages can import any or all of a module's
  105.     published interface.  See perlmod(1), perlsub(1), and
  106.         Exporter(3pm). 
  107.     * Object-oriented programming:  A package can function as a class.
  108.     Dynamic multiple inheritance and virtual methods are supported
  109.     in a straight-forward manner with little new syntax.  Filehandles
  110.     are now treated as objects.  See perlobj(1), perlmod(1), and
  111.         FileHandle(3pm). 
  112.     * Embeddable and Extensible:  Perl can be easily embedded in C/C++
  113.     applications, and can either call or be called by your routines
  114.         through a documented interface.  The XS preprocessor is provided to
  115.         make it easy to glue your C/C++ routines into Perl.  Dynamic
  116.         loading of modules is supported.  See perlapi(1), perlcall(1), and
  117.         DynaLoader(3pm). 
  118.     * POSIX compliant:  A major new module is the POSIX module, which
  119.     provides access to all available POSIX routines and definitions.
  120.         Seee POSIX(3pm).
  121.     * Package constructors and destructors:  The new BEGIN and END blocks
  122.         provide means to capture control as a package is being compiled and
  123.         after the program exits.  As a degenerate case, they work just like
  124.         awk's BEGIN and END when you use the -p or -n switches.  See
  125.         perlmod(1). 
  126.     * Multiple simultaneous DBM implementations:  A perl program now has
  127.         access to DBM, NDBM, SDBM, GDBM and Berkeley DB files in the same
  128.         script.  The dbmopen interface has been generalized to allow any
  129.         variable to be tied to an object class which defines its access
  130.         methods.  tie/untie now preferable to dbmopen/dbmclose.  See the
  131.         tie() entry in perlfunc(1) and the DB_File(3pm) man pages.
  132.     * Subroutine definitions may now be autoloaded:  The AUTOLOAD mechanism
  133.         allows any arbitrary semantics to undefined subroutine calls.  See
  134.         the section on Autoloading in the perlsub(1) manpage.
  135.     * Regular Expression Enhancements:  Qualifiers may be followed by a "?"
  136.     to signify that they should be non-greedy.  A "?" directly after
  137.     an opening paren indicates non backreference grouping and the next
  138.     character determines the purpose of the match (?:a|b|c) will match
  139.     any of a b or c without producing a backreference, (?=stuff) does
  140.     a non-eating look ahead to assure that the next thing is stuff, 
  141.     (?!nonsense) looks ahead to assure that the next thing must not
  142.     be "nonsense".  Embedded whitespace and comments for readability.  
  143.     A consistent extensibility mechanism has been added that is 
  144.     upwardly compatible with all old regexps.  Variables may now be 
  145.     interpolated literally into a pattern with \Q or the quotemeta 
  146.     function, which works like \U but backwhacks non-alphanumerics.  
  147.     New m and s "flags" for pattern matching force multi- or 
  148.     single-line matching.  The "s" makes "." match "\n".  \A and
  149.     \Z anchor matches to the beginning and end of a string and ignore
  150.     multiline semantics.  \G matches where the previous m//g or s///g
  151.     left off.
  152.     * The -w (warnings) switch is much more informative.
  153.     * References and Objects (see t/op/ref.t) for examples.
  154.     * => is a synonym for comma and helps group paired arguments, such
  155.     as initializers for associative arrays and named arguments to
  156.     subroutines.
  157.     * All functions, even predeclared subroutines, are treated as list
  158.         operators or unary operators.  Parens are optional. 
  159.     * Flattened interpreter:  Compare perl4's eval.c with perl5's pp.c.
  160.     Compare perl4's 900 line interpreter look with perl5's one line.
  161.     * eval is now treated like a subroutine call, meaning (among other
  162.     things) you can return from it.
  163.     * format value lists may be spread over multiple lines with a do {}
  164.     block.
  165.     * flags on the #! line are interpreted even if the script wasn't
  166.     invoked directly.
  167.     * ?: is now an lvalue.
  168.     * list context now propogates to the right side of && and ||, and
  169.     as the 2nd and 3rd arguments of ?:
  170.     * preferred package delimiter now :: rather than '.
  171.     * new "and" and "or" operators, like && and || but with a lower
  172.     precedence than comma, so they work better with list operators.
  173.     * New functions abs(), chr(), uc(), ucfirst(), lc(), and lcfirst()
  174.     * require(number) checks to see that the version is at least that
  175.     version
  176.     * qw//, which is equivalent to split(' ', q//)
  177.     * assignment of a reference to a glob replaces the single element
  178.     of the glob corresponding to the reference type:
  179.         *foo = \$bar, * foo = \&bletch;
  180.     * filehandle methods are supported:
  181.     output_autoflush STDOUT 1;
  182.     * Autoload stubs can now call the replacement subroutine with
  183.     goto &realsub.
  184.     * Subroutines can be defined lazily in any package by declaring
  185.     an AUTOLOAD routine, which will be called if a non-existent
  186.     subroutine is called in that package.
  187.     * "use" and "no" subsume many features.  "use Module LIST" is
  188.     short for "BEGIN { require Module; import Module LIST }"
  189.     "no" is identical, except that it calls "unimport" instead.
  190.     "use integer" and variations of "use strict [vars,refs,subs]"
  191.     were implemented through new modules.
  192.  
  193. (Thanks to Tom Christiansen* for this section)
  194.  
  195.  
  196. 1.4) Where can I get docs on perl5?
  197.   
  198.     The complete perl documentation is available with the Perl
  199.     distribution, or can be accessed from the following sites.
  200.     Note that the PerlDoc ps file is 240 pages long!! 
  201.   
  202.     Marked Up (HTML) format:
  203.         http://www.metronet.com/0/perlinfo/perl5/manual/perl.html
  204.         http://web.nexor.co.uk/perl/perl.html                    (Europe)
  205.  
  206.     PostScript:
  207.     ftp://ftp.cis.ufl.edu/pub/perl/doc/PerlDoc.ps.gz
  208.         ftp://ftp.uu.net/languages/perl/PerlDoc.ps.gz
  209.         ftp://www.metronet.com/pub/perl/perl5/manual/PerlDoc.ps.gz
  210.         ftp://ftp.zrz.tu-berlin.de/pub/unix/perl/PerlDoc.ps.gz  (Europe)
  211.         ftp://ftp.cs.ruu.nl/pub/PERL/perl5.0/doc/PerlDoc.ps.gz  (Europe)
  212.         ftp://sungear.mame.mu.oz.au/pub/perl/doc/PerlDoc.ps.gz  (Oz)
  213.         unable to access as of 7/15/95
  214.  
  215.     TeXinfo (Emacs) Format:
  216.         ftp://www.metronet.com/pub/perl/perl5/manual/perl5-info.tar.gz
  217.  
  218.  
  219. 1.5) Will perl5 break my perl4 scripts?
  220.   
  221.     In general, no.  However, certain bad old practices have become highly
  222.     frowned upon.  The following are the most important of the known
  223.     incompatibilities between perl4 and perl5.  See perltrap(1) for more 
  224.     details.
  225.   
  226.     * "@" ***ALWAYS*** interpolates in double quoted strings.  Non-array
  227.     "@"s must be escaped: 
  228.         Mail("foo@bar.com") needs to be
  229.         Mail("foo\@bar.com"); 
  230.     The compiler catches this.
  231.     * "open FILE || die" needs to be "open(FILE) || die".  The compiler
  232.       forgives you for this, but won't stop complaining until you fix it.
  233.     * Barewords are no longer (necessarily) strings: they will actually
  234.       call the function (if it existed when that code was compiled)
  235.       instead of returning a string of that value.  Check your 
  236.       signal handlers.  The 'use strict subs' pragma (see strict(3pm))
  237.       will help you with this.
  238.     * "shift @x + 20" needs to be "shift(@x) + 20" because of precedence,
  239.       and likewise "$y = scalar keys %foo + 30" needs to be instead 
  240.       "$y = scalar keys(%foo) + 30".
  241.     * The internal symbol table is called %{PACKAGE::} for any given 
  242.       package.  It used to be %{_PACKAGE}.
  243.     * You may no longer (attempt to) write to read-only variables, like $1,
  244.       or assign to a substr() past the end of a string.
  245.     * Various deprecated practices elicit warning messages.
  246.     * The package delimiter has been changed from ' to ::.  Use of ' is
  247.       deprecated, but still works.  Use of :: may break scripts if you
  248.       aren't careful (especially if you are working with colon delimited
  249.       data files, like /etc/passwd)
  250.  
  251.  
  252. 1.6) When will Perl stabilize?
  253.   
  254. When asked at what point the Perl code would be frozen, Larry answered:
  255.   
  256.     Part of the redesign of Perl is to *allow* us to more or less freeze
  257.     the language itself.  It won't totally freeze, of course, but I think
  258.     the rate of change of the core of the language is asymptotically
  259.     approaching 0.  In fact, as time goes on, now that we have an official
  260.     extension mechanism, some of the things that are currently in the core
  261.     of the language may move out (transparently) as extensions.  This has
  262.     already happened to dbmopen().
  263.   
  264.     I've also been continuously reminding myself of what Henry Spencer
  265.     calls "second system syndrome", in which everything under the sun gets
  266.     added, resulting in a colossal kludge, like OS 360.  You'll find that
  267.     the new features in Perl 5 are all pretty minimalistic.  The
  268.     object-oriented features in particular added only one new piece of
  269.     syntax, a C++-style method call.
  270.   
  271.     : The whole idea behind
  272.     : Perl is to be a fast text-processing, system-maintenance, zero-startup
  273.     : time language. If it gets to be so large and complicated that it isn't
  274.     : fast-running and easy to use, it won't be to anyone's benefit.
  275.   
  276.     My motto from the start has been, "If it ain't broke, don't fix it."
  277.     I've been trying very hard not to remove those features from Perl that
  278.     make it what it is.  At the same time, a lot of streamlining has gone
  279.     into the syntax.  The new yacc file is about half the size of the old
  280.     one, and the number of official reserved words has been cut by 2/3.
  281.     All built-in functions have been unified (dualified?) as either list
  282.     operators or unary operators.
  283.   
  284.     : I really like a lot of the features in Perl, but in order for Perl to
  285.     : be useful on a long term basis, those features have to stay put. I
  286.     : bought the Camel book less than a year ago and it sounds like within
  287.     : another year it will be obsolete.
  288.   
  289.     The parts of Perl that the Camel book covers have not changed all that
  290.     much.  Most old scripts still run.  Many scripts from Perl version 1.0
  291.     still run.  We'll certainly be revising the Camel, but the new man
  292.     pages are split up such that it's pretty easy to ferret out the new
  293.     info when you want it.
  294.   
  295.     We did break a few misfeatures in going to Perl 5.  It seemed like the
  296.     first and last chance to do so.  There's a list of the
  297.     incompatibilities in the documentation. 
  298.   
  299.     : Not only is it a lot of work to recompile Perl
  300.     : on 20+ machines periodically, but it's hard to write scripts that are 
  301.     : useful in the long term if the guts of the language keep changing.
  302.     : (And if I keep having to buy new books. I keep hearing about new
  303.     : features of Perl 5 that aren't documented in any of the perl 5
  304.     : documentation that *I* can find.)
  305.   
  306.     I think you'll find a lot of folks who think that 4.036 has been a
  307.     pretty stable platform.
  308.   
  309.     Perl 5 is a special case.  I've been working on it for years.  (This is
  310.     part of the reason 4.036 has been so stable!)  There are many changes,
  311.     most of them for the better, I hope.  I don't expect the transition to
  312.     be without pain.  But that's why I stuck numbered versions out in your
  313.     bin directory, so that you can upgrade piecemeal if you like.  And
  314.     that's why I made the -w switch warn about many of the incompatibilities.
  315.   
  316.     And overriding all that, I've tried to keep it so that you don't have
  317.     to know much about the new stuff to use the old stuff.  You can upgrade
  318.     your *knowledge* piecemeal too.
  319.   
  320.     The extension mechanism is designed to take over most of the
  321.     evolutionary role from now on.  And it's set up so that, if you don't
  322.     have a particular extension, you know it right up at the front. 
  323.   
  324.     : Are there any plans to write a Perl compiler? While interpreted Perl
  325.     : is great for many applications, it would also be cool to be able to
  326.     : precompile many scripts. (Yes, I know you can undump things, but
  327.     : undump isn't provided with Perl and I haven't found a copy.) The
  328.     : creation of a perl library and dynamically-loadable modules seems
  329.     : like a step in that direction.  
  330.   
  331.     Yes, part of the design of Perl 5 was to make it *possible* to write a 
  332.     compiler for it.  It could even be done as an extension module, I
  333.     suppose.  Anyone looking for a master's thesis topic?
  334.   
  335.     In summary, almost every concern that you might think of has already
  336.     been (at least) thought about.  In a perfect world, every concern
  337.     could be addressed perfectly.  But in this world we just have to slog
  338.     through.
  339.   
  340.  
  341. 1.7) What's the difference between "perl" and "Perl"?
  342.  
  343.     32!  [ ord('p') - ord('P') ]  (Shouldn't that be 42, the Answer to the
  344.         Great Question of Life, the Universe, and Everything?  ;) 
  345.  
  346.     Larry now uses "Perl" to signify the language proper and "perl" the
  347.     implementation of it, i.e. the current interpreter.  Hence Tom's
  348.     quip that "Nothing but perl can parse Perl."
  349.  
  350.     On the other hand, the aesthetic value of casewise parallelism in
  351.     "awk", "sed", and "perl" as much require the lower-case version as "C",
  352.     "Pascal", and "Perl" require the upper-case version.  It's also easier
  353.     to type "Perl" in typeset print than to be constantly switching in
  354.     Courier. :-) 
  355.     
  356.     In other words, it doesn't matter much, especially if all you're doing
  357.     is hearing someone talk about the language; case is hard to distinguish
  358.     aurally. 
  359.  
  360.  
  361. 1.8) Is it a perl program or a perl script?
  362.  
  363.     It depends on whether you are talking about the perl binary or
  364.     something that you wrote using perl.  And, actually, even this isn't
  365.     necessarily true.
  366.  
  367.     "Standard" UNIX terminology is (roughly) this:  programs are compiled
  368.     into machine code once and run multiple times, scripts are translated
  369.     (by a program) each time they are used.  However, some say that a
  370.     program is anything written which is executed on a computer system.
  371.     Larry considers it a program if it is set in stone and you can't change
  372.     it, whereas if you can go in and hack at it, it's a script.  Of course,
  373.     if you have the source code, that makes just about anything a
  374.     script.  ;)
  375.  
  376.     In general, it probably doesn't really matter.  The terms are used
  377.     interchangeably.  If you particularly like one or the other, use it.  If
  378.     you want to call yourself a perl programmer, call them programs.  If
  379.     you want to call yourself a perl scripter, call them scripts.  Randal*
  380.     and I (at least) will call them hacks.  (See question 2.10 ;)
  381.  
  382.     Larry says that a script is what you give an actor, but a program is
  383.     what you give an audience.
  384.  
  385.  
  386. 1.9) Is perl difficult to learn?
  387.     
  388.     Not at all.  Many people find Perl extremely easy to learn.  There are
  389.     at least three main reasons for this.
  390.  
  391.     The first reason is that most of Perl has been derived from standard
  392.     utilities, tools, and languages that you are (probably) already
  393.     familiar with.  If you have any knowledge of the C programming language
  394.     and standard C library, the Unix Shell, sed and awk, Perl should be
  395.     simple and fun for you to learn.
  396.  
  397.     The second reason that Perl is easy to learn is that you only have to
  398.     know a very small subset of Perl to be able to get useful results.  In
  399.     fact, once you can master
  400.  
  401.         #!/usr/local/bin/perl
  402.      print "Hello, world\n";
  403.  
  404.     you can start writing Perl scripts.  In fact, you will probably never
  405.     have to (or be able to) know everything about Perl.  As you feel the
  406.     need or desire to use more sophisticated features (such as C structures
  407.     or networking), you can learn these as you go.  The learning curve for
  408.     Perl is not a steep one, especially if you have the headstart of having 
  409.     a background in UNIX.  Rather, its learning curve is gentle and
  410.     gradual, but it *is* admittedly rather long. 
  411.  
  412.     The third reason is that you can get immediate results from your
  413.     scripts.  Unlike a normal compiled language (like C or Pascal, for
  414.     example), you don't have to continually recompile your program every
  415.     time you change one little thing.  Perl allows you to experiment and
  416.     test/debug quickly and easily.  This ease of experimentation flattens
  417.     the learning curve even more.
  418.  
  419.     If you don't know C or UNIX at all, it'll be a steeper learning curve,
  420.     but what you then learn from Perl will carry over into other areas,
  421.     like using the C library, UNIX system calls, regular expressions, and 
  422.     associative arrays, just to name a few.  To know Perl is to know UNIX,
  423.     and vice versa. 
  424.  
  425.  
  426. 1.10) Should I program everything in Perl?
  427.  
  428.     Most definitely.  In fact, you should delete the binaries for sed, awk,
  429.     cc, gcc, grep, rm, ls, cat... well, just delete your /bin directory.
  430.  
  431.     But seriously, of course you shouldn't.  As with any job, you should
  432.     use the appropriate tool for the task at hand.  Just because a hammer 
  433.     will put screws into a piece of board, you probably don't want to do
  434.     that.
  435.  
  436.     While it's true that the answer to the question "Can I do (some
  437.     arbitrary task) in Perl?" is almost always "yes", that doesn't mean
  438.     this is necessarily a good thing to do.  For many people, Perl serves
  439.     as a great replacement for shell programming.  For a few people, it
  440.     also serves as a replacement for most of what they'd do in C.  But for
  441.     some things, Perl just isn't the optimal choice.
  442.  
  443.  
  444. 1.11) How does Perl compare with other scripting languages, like Tcl, Python
  445.      or REXX?
  446.  
  447.     REXX is an interpreted programming language first seen on IBM systems.
  448.     Python is an interpreted programming language by Guido van Rossum*.
  449.     TCL is John Ousterhout*'s embeddable command language, designed just
  450.     for embedded command extensions, but lately used for larger
  451.     applications.  TCL's most intriguing feature for many people is the
  452.     tcl/tk toolset that allows for interpreted X-based tools.  Others use
  453.     it for its "expect" extension.
  454.  
  455.     To avoid any flamage, if you really want to know the answer to this
  456.     question, probably the best thing to do is try to write equivalent
  457.     code to do a set of tasks.  All three have their own newsgroups in
  458.     which you can learn about (but hopefully not argue about) these
  459.     languages.
  460.  
  461.     To find out more about these or other languages, you might also check
  462.     out David Muir Sharnoff*'s posting "Catalog of Compilers, Interpreters,
  463.     and Other Language Tools" which he posts to comp.lang.misc,
  464.     comp.sources.d, comp.archives.admin, and news.answers newsgroups.  It's
  465.     a comprehensive treatment of many different languages.  (Caveat lector:
  466.     he considers Perl's syntax "unappealing".)
  467.  
  468.  
  469. 1.12) How can I get Perl over the Internet?
  470.  
  471.     Perl is available from any comp.sources.misc archive.  You can use an
  472.     archie server (see the alt.sources FAQ in news.answers) to find these
  473.     if you want.
  474.  
  475.       Version 4:
  476.     Volume    Issues    Patchlevel and Notes
  477.     ------    ------    ------------------------------------------------
  478.       18    19-54    Patchlevel 3, Initial posting.
  479.       20    56-62    Patches 4-10    
  480.  
  481.       Version 5:
  482.         Volume    Issues    Patchlevel and Notes
  483.         ------    ------    -----------------------------------------------
  484.           45    64-128    Initial Posting, patchlevel 0.
  485.  
  486.     Since 1993, a number of archives have sprung up specifically for Perl
  487.     and Perl related items.  Larry maintains the official distribution
  488.     site (for both perl4.036 and perl5) at netlabs.  Probably the largest
  489.     archive is at the University of Florida.  In order of probability these
  490.     sites will have the sources.
  491.  
  492.     Site    Directory and notes                        IP                
  493.     ---------------------------------------------         -------        
  494.     North America:
  495.     ftp://ftp.netlabs.com/pub/outgoing/perl5.0/         192.94.48.152
  496.     ftp://ftp.cis.ufl.edu/pub/perl/src/5.0/                128.227.100.198
  497.         ftp://prep.ai.mit.edu/pub/gnu/                        18.71.0.38
  498.         not current as of 7/15/95
  499.         ftp://ftp.uu.net/languages/perl/                    192.48.96.9
  500.         not current as of 7/15/95
  501.         ftp://ftp.khoros.unm.edu/pub/perl/                  198.59.155.28
  502.         not current as of 7/15/95
  503.         ftp://ftp.cbi.tamucc.edu/pub/duff/Perl/                165.95.1.3
  504.     ftp://ftp.metronet.com/pub/perl/sources/            192.245.137.1
  505.         ftp://genetics.upenn.edu/perl5/                        128.91.200.37
  506.  
  507.     Europe:
  508.         ftp://ftp.cs.ruu.nl/pub/PERL/perl5.0/src/        131.211.80.17
  509.         ftp://ftp.funet.fi/pub/languages/perl/ports/perl5/  128.214.248.6
  510.         ftp://ftp.zrz.tu-berlin.de/pub/unix/perl/           130.149.4.40
  511.         ftp://src.doc.ic.ac.uk/packages/perl5/                146.169.17.5
  512.   
  513.     Australia:
  514.         ftp://sungear.mame.mu.oz.au/pub/perl/src/5.0/        128.250.209.2
  515.  
  516.     South America (mirror of ftp://prep.ai.mit.edu/pub/gnu):
  517.         ftp://ftp.inf.utfsm.cl/pub/gnu/                        146.83.198.3
  518.  
  519.     If there is a site in Asia or Japan, please tell us about it.  Thanks! 
  520.  
  521.     You can also retrieve perl via non-ftp methods:
  522.   
  523.         http://src.doc.ic.ac.uk/packages/perl5/                146.169.17.5
  524.         gopher://src.doc.ic.ac.uk/0/packages/perl5/         146.169.17.5
  525.  
  526.  
  527. 1.13) How can I get Perl via Email?
  528.  
  529.     The following is a list of known ftpmail sites.  Please attempt to use
  530.     the site closest to you with the ftp archive closest to it.  Many of
  531.     these sites already have perl on them.  For information on how to use
  532.     one of these sites, send email containing the word "help" to the
  533.     address.
  534.  
  535.     United States:
  536.         Massachusetts:    ftpmail@decwrl.dec.com
  537.         New Jersey:        bitftp@pucc.princeton.edu
  538.         North Carolina:    ftpmail@sunsite.unc.edu
  539.  
  540.     Europe/UK:
  541.         Germany:        ftpmail@ftp.uni-stuttgart.de
  542.                 bitftp@vx.gmd.de
  543.         UK:            ftpmail@doc.ic.ac.uk
  544.  
  545.     Australia:        ftpmail@cs.uow.edu.au
  546.  
  547.     Henk P Penning* suggests that if you are in Europe you should try the
  548.     following (if you are in Germany or the UK, you should probably use one
  549.     of the servers listed above): 
  550.  
  551.         Email: Send a message to 'mail-server@cs.ruu.nl' containing:
  552.      begin
  553.      path your_email_address
  554.      send help
  555.      send PERL/perl5.0/INDEX
  556.      end
  557.     The path-line may be omitted if your message contains a normal
  558.     From:-line.  You will receive a help-file and an index of the
  559.     directory that contains the Perl stuff.
  560.  
  561.     If all else fails, mail to Larry usually suffices.
  562.  
  563.  
  564. 1.14) How can I get Perl via UUCP?
  565.  
  566.     There currently is no way of getting Perl via UUCP.  If anyone knows of
  567.     a way, please contact me.  The OSU site has discontinued the service.
  568.  
  569.  
  570. 1.15) Are there other ways of getting perl?
  571.  
  572.     Another possibility is to use UUNET, although they charge you for it.
  573.     You have been duly warned.  Here's the advertisement: 
  574.  
  575.            Anonymous Access to UUNET's Source Archives
  576.  
  577.                  1-900-GOT-SRCS
  578.  
  579.     UUNET now provides access to its extensive collection of UNIX
  580.     related sources to non- subscribers.  By  calling  1-900-468-7727
  581.     and  using the login "uucp" with no password, anyone may uucp any
  582.     of UUNET's on line source collection.  Callers will be charged 40
  583.     cents  per  minute.   The charges will appear on their next tele-
  584.     phone bill.
  585.  
  586.      The file uunet!/info/help contains instructions.   The  file
  587.     uunet!/index//ls-lR.Z  contains  a  complete  list  of  the files 
  588.     available  and is  updated daily.   Files ending  in Z need to be 
  589.     uncompressed before being used.  The file uunet!~/compress.tar is
  590.     a tar archive containing the C sources for the uncompress program. 
  591.  
  592.      This service provides a  cost  effective  way  of  obtaining
  593.     current  releases  of sources without having to maintain accounts
  594.     with UUNET or some other service.  All modems  connected  to  the
  595.     900  number  are  Telebit T2500 modems.  These modems support all
  596.     standard modem speeds including PEP, V.32 (9600), V.22bis (2400),
  597.     Bell  212a  (1200), and Bell 103 (300).  Using PEP or V.32, a 1.5
  598.     megabyte file such as the GNU C compiler would cost $10  in  con-
  599.     nect  charges.   The  entire  55  megabyte X Window system V11 R4
  600.     would cost only $370 in connect time.  These costs are less  than
  601.     the  official  tape  distribution fees and they are available now
  602.     via modem.
  603.  
  604.               UUNET Communications Services
  605.            3110 Fairview Park Drive, Suite 570
  606.              Falls Church, VA 22042
  607.              +1 703 876 5050 (voice)
  608.               +1 703 876 5059 (fax)
  609.                 info@uunet.uu.net
  610.  
  611.  
  612. 1.16) Has perl been ported to machine FOO?
  613.  
  614.     Perl runs on virtually all Unix machines simply by following the hints
  615.     file and instructions in the Configure script.  This auto-configuration
  616.     script allows Perl to compile on a wide variety of platforms by
  617.     modifying the machine specific parts of the code.  For most Unix
  618.     systems, or VMS systems for v5 perl, no porting is required.  Try to
  619.     compile Perl on your machine.  If you have problems, examine the README
  620.     file carefully.  If all else fails, send a message to comp.lang.perl
  621.     and crosspost to comp.sys.[whatever], there's probably someone out
  622.     there that has already solved your problem and will be able to help you
  623.     out. 
  624.  
  625.     Perl4.036 has been ported to many non-Unix systems, although currently
  626.     there are only a few (beta) v5 ports.  All of the following are
  627.     mirrored at ftp://ftp.cis.ufl.edu:/pub/perl/src/.  The following are
  628.     the (known) official distribution points.  Please contact the porters 
  629.     directly (when possible) in case of questions on these ports.
  630.  
  631.     * MS-DOS binaries and source are available at  [130.179.8.47]
  632.           ftp://ftp.ee.umanitoba.ca/pub/msdos/perl/perl4
  633.       There are currently half a dozen different ports for MS-DOS.
  634.       BigPerl4 (v4) is perl4.036 compiled with the Watcom C/C++^32
  635.       compiler (32-bit, flat-memory model C compiler) with the
  636.       following features:
  637.         * Up to 32MB of memory can be used.
  638.         * Supports virtual memory.
  639.         * Works under Windows 3.1 
  640.         * The perl debugger can be used.
  641.         * Contains Berkeley DB support.  GDBM is no longer supported.
  642.  
  643.       Note that the latest version of BigPerl4 can also be found at
  644.       any SimTel mirror site (ftp.ee.umanitoba.ca does not
  645.       necessarily have the latest version), such as:
  646.  
  647.         ftp://oak.oakland.edu/SimTel/msdos/perl/
  648.  
  649.           A beta-test version of bigperl based on Perl 5.000 can be
  650.           obtained from the following sites:
  651.  
  652.             ftp://ftp.einet.net/pub/perl5
  653.             ftp://ftp.khoros.unm.edu/pub/perl/msdos
  654.             ftp://ftp.ee.umanitoba.ca/pub/msdos/perl/perl5
  655.  
  656.           This beta bigperl also contains ported versions of a2p and s2p.
  657.  
  658.     * Windows/NT binaries are available from
  659.           ftp://ftp.intergraph.com/pub/win32/perl, or at any of the major
  660.           NT archives.  They are compiled for NT 3.5, but appears to work
  661.           under Win95 also.  It is visible to the NT Registry.  Dean
  662.           Troyer* is working on extending the visibility to SAM and the
  663.           Event Log.  His current work-in-progress is available from
  664.           ftp://pmip.dist.maricopa.edu/pub/nt.
  665.  
  666.     * Macintosh binaries and source are available from [130.59.1.40]
  667.           ftp://nic.switch.ch/software/mac/perl.
  668.       Version 4.1.3 is perl4.036 compiled with the MPW C compiler
  669.         * Mac_Perl_413_src.sit.bin        Sources
  670.         * Mac_Perl_413_tool.sit.bin        MPW Tool
  671.         * Mac_Perl_413_appl.sit.bin        Standalone Application
  672.       There is a mailing list for discussing Macintosh Perl.  Contact
  673.       "mpw-perl-request@iis.ee.ethz.ch".
  674.  
  675.       Timothy Murphy* also ported a version of perl to the Macintosh
  676.       using Think C.  It has probably been abandoned in favour of the
  677.       MPW port, but is still available at [134.266.81.10]
  678.           ftp://ftp.maths.tcd.ie/pub/Mac/perl-4.035/.
  679.  
  680.           Matthias Ulrich Neeracher* is working on a perl5 port to the
  681.           Macintosh.  A PowerPC version is available at 
  682.           ftp://err.ethz.ch/pub/neeri/MacPerlBeta.
  683.  
  684.     * OS/2 sources are also available at
  685.           ftp://ftp.cis.ufl.edu/pub/perl/src/4.0/os2.  This appears to have
  686.           been abandoned and added to the official distribution.  See the
  687.           directory os2 in the perl5 sources.
  688.  
  689.     * VMS systems should be able to build directly from the standard
  690.       distribution.
  691.  
  692.         * Amiga sources are not available from ftp.cis.ufl.edu, but can
  693.           be found at any Aminet archive, notably:
  694.             * ftp://ftp.wustl.edu/pub/aminet/dev/lang/
  695.             * ftp://ftp.uni-erlangen.de/pub/aminet/dev/lang/
  696.             * ftp://ftp.doc.ic.ac.uk/pub/aminet/dev/lang/
  697.             * ftp://ftp.funet.fi/pub/languages/perl/ports/perl4/amiga
  698.  
  699. 1.17) How do I get Perl to compile on Solaris?
  700.  
  701.     The following directions are for perl, version 4.  Perl, version 5,
  702.     should compile more easily.  If not, send mail to The Perl Porters
  703.     Mailing List (perl5-porters@nicoh.com)
  704.  
  705.     John Lees* reports:
  706.  
  707.         I have built perl on Solaris 2.1, 2.2 beta, and 2.2 FCS. Take
  708.     /usr/ucb out of your path and do not use any BSD/UCB libraries.
  709.     Only -lsocket, -lnsl, and -lm are needed. You can use the hint for
  710.     Solaris 2.0, but the one for 2.1 is wrong. Do not use vfork. Do not
  711.     use -I/usr/ucbinclude.  The result works fine for me, but of couse
  712.     does not support a couple of BSDism's.
  713.  
  714.     Casper H.S. Dik* reports
  715.  
  716.         You must remove all the references to /usr/ucblib AND
  717.         /usr/ucbinclude.  And ignore the Solaris_2.1 hints. They are wrong.
  718.         The undefining of vfork() probably has to do with the confusion it 
  719.         gives to the compilers.  If you use cc, you mustn't compile
  720.     util.c/tutil.c  with -O.  I only used the following libs: -lsocket 
  721.     -lnsl -lm (there is a problem with -lmalloc)
  722.  
  723.     Michael D'Errico* reports:
  724.  
  725.         If you are using Solaris 2.x, the signal handling is broken.  If
  726.     you set up a signal handler such as 'ripper' it will be forgotten
  727.     after the first time the signal is caught.  To fix this, you need
  728.     to recompile Perl.  Just add '#define signal(x,y) sigset((x),(y))'
  729.     after the '#include <signal.h>' directive in each file that it
  730.     occurs, then make it again. 
  731.  
  732.  
  733. 1.18) How do I get Perl to compile on a Next?
  734.  
  735.     According to Andreas Koenig*, under NeXTstep 3.2, both perl4.036 and
  736.     perl5.000 compile with the supplied hints file. 
  737.  
  738.     However, Bill Eldridge* provides this message to help get perl4.036 on
  739.     NeXTstep 3.0 to work: 
  740.  
  741.         To get perl to compile on NeXTs, you need to combine the ANSI
  742.         and BSD headers:
  743.  
  744.         cd /usr/include
  745.         mkdir ansibsd
  746.         cd ansibsd
  747.         ln -s ../ansi
  748.         ln -s ../bsd
  749.  
  750.         Then, follow the configuration instructions for NeXTs, *replacing*
  751.         all mention of -I/usr/include/ansi or -I/usr/include/bsd with
  752.         -I/usr/include/ansibsd.
  753.  
  754.  
  755. 1.19) What extensions are available from Perl and where can I get them?
  756.   
  757.     Some of the more popular extensions include those for windowing,
  758.     graphics, or data base work.  Most of the major sites contain an
  759.     archive of the extensions, usually in the ext directory.  Since the
  760.     list of available extensions changes so often, I have opted to list
  761.     only the sites and directories, not the individual extensions, please
  762.     check the closest archive for more information
  763.   
  764.       ftp://ftp.cis.ufl.edu/pub/perl/ext
  765.         (also linked at ftp://ftp.cis.ufl.edu/pub/perl/src/5.0/ext)
  766.       ftp://ftp.khoros.unm.edu/pub/perl/extensions/
  767.       ftp://ftp.metronet.com/pub/perlinfo/perl5/
  768.       ftp://ftp.cs.ruu.nl/pub/PERL/perl5.0/ext
  769.       ftp://black.ox.ac.uk/src/ALPHA/
  770.  
  771.  
  772. 1.20) What is dbperl and where can I get it?
  773.  
  774.     Many database-oriented extensions to Perl have been written.
  775.     Basically, these use the usub mechanism (see the usub/ subdirectory) in
  776.     the source distribution) to link in a database library, allowing
  777.     embedded calls to Informix, Ingres, Interbase, Oracle and Sybase.
  778.  
  779.     Here are the authors of the various extensions:
  780.  
  781.     What            Target DB       Who
  782.     --------        -----------     ----------------------------------------
  783.     ?Infoperl       Informix        Kurt Andersen (kurt@hpsdid.sdd.hp.com)
  784.     Ingperl        Ingres        Tim Bunce (timbo@ig.co.uk) and Ted Lemon
  785.     Interperl       Interbase       Buzz Moschetti (buzz@bear.com)
  786.     Isqlperl        Informix        William Hails, bill@tardis.co.uk
  787.     Oraperl         Oracle          Kevin Stock (kstock@Auspex.com)
  788.     Pgperl        Postgres        Igor Metz (metz@iam.unibe.ch)
  789.     *Sqlperl        Ingres          Ted Lemon (mellon@ncd.com)
  790.     Sybperl         Sybase          Michael Peppler (mpeppler@itf.ch)
  791.     Uniperl        Unify 5.0        Rick Wargo (rickers@coe.drexel.edu)
  792.  
  793.     ? Does this one still exist?
  794.     * Sqlperl appears to have been subsumed by Ingperl
  795.  
  796.     Buzz Moschetti* has organized a project to create a higher level
  797.     interface to allow you to write your queries in a database-independent
  798.     fashion.  If this type of project interests you, send mail to
  799.     <perldb-interest-request@vix.com> and asked to be placed on the 
  800.     "perldb-interest" mailing lists.
  801.  
  802.     Here's a bit of advertising from Buzz:
  803.  
  804.     Perl is an interpreted language with powerful string, scalar, and
  805.     array processing features developed by Larry Wall that "nicely
  806.     bridges the functionality gap between sh(1) and C."  Since
  807.     relational DB operations are typically textually oriented, perl is
  808.     particularly well-suited to manage the data flows.  The C source
  809.     code, which is available free of charge and runs on many platforms,
  810.     contains a user-defined function entry point that permits a
  811.     developer to extend the basic function set of the language.  The
  812.     DBperl Group seeks to exploit this capability by creating a
  813.     standardized set of perl function extensions (e.g. db_fetch(),
  814.     db_attach()) based on the SQL model for manipulating a relational
  815.         DB, thus providing a portable perl interface to a variety of
  816.         popular RDMS engines including Sybase, Oracle, Ingres, Informix,
  817.         and Interbase.  In theory, any DB engine that implements a dynamic
  818.         SQL interpreter in its HLI can be bolted onto the perl front end
  819.         with predicatable results, although at this time backends exist
  820.         only for the aforementioned five DB engines. 
  821.  
  822.     The official archive for DBperl extensions is ftp.demon.co.uk:
  823.     /pub/perl/db.  It's the home of the evolving DBperl API Specification.
  824.     Here's an extract from the updated README there:
  825.  
  826.     DBI/        The home of the DBI archive. To join the DBI mailing list
  827.                 send your request to perldb-interest-REQUEST@vix.com
  828.  
  829.     DBD/        Database Drivers for the DBI ...
  830.      
  831.     Oracle/      By Tim Bunce (not yet ready!) 
  832.     Ingres/      By Tim Bunce (not yet started!) 
  833.  
  834.     mod/           Other Perl 5 Modules and Extensions ...
  835.  
  836.     Sybperl/    By Michael Peppler, mpeppler@itf.ch
  837.  
  838.  
  839.     perl4/         Perl 4 extensions (using the usub C interface)
  840.  
  841.        oraperl/   ORACLE 6 & 7  By Kevin Stock, kstock@auspex.com 
  842.        sybperl/   SYBASE 4      By Michael Peppler, mpeppler@itf.ch
  843.        ingperl/   INGRES        By Tim Bunce timbo@ig.co.uk and Ted Lemon
  844.        isqlperl/  INFORMIX      By William Hails, bill@tardis.co.uk
  845.        interperl/ INTERBASE     By Buzz Moschetti, buzz@bear.com
  846.        oraperl/   ORACLE 6 & 7  By Kevin Stock (sadly no longer on the net)
  847.        sybperl/   SYBASE 4      By Michael Peppler, mpeppler@itf.ch
  848.        ingperl/   INGRES        By Tim Bunce timbo@ig.co.uk and Ted Lemon
  849.        isqlperl/  INFORMIX      By William Hails, bill@tardis.co.uk
  850.        interperl/ INTERBASE     By Buzz Moschetti, buzz@bear.com
  851.        uniperl/   UNIFY 5.0     By Rick Wargo, rickers@coe.drexel.edu
  852.        pgperl/    POSTGRES      By Igor Metz, metz@iam.unibe.ch
  853.  
  854.        btreeperl/ NDBM perl extensions.   By John Conover, john@johncon.com
  855.        ctreeperl/ C-Tree perl extensions. By John Conover, john@johncon.com
  856.        duaperl/   X.500 Directory User Agent. By Eric Douglas.
  857.   
  858.     scripts/       Perl and shell scripts
  859.   
  860.        rdb/       RDB is a perl RDBMS for ASCII files. By Walt Hobbs,
  861.                     hobbs@rand.org 
  862.        shql/      SHQL is an interactive SQL database engine.  Written as a
  863.                     shell script, SHQL interprets SQL commands and
  864.                     manipulates flat files based on those commands. By
  865.                     Bruce Momjian, root@candle.uucp 
  866.        xbase/     Perl scripts for accessing xBase style files (dBase III) 
  867.  
  868.  
  869.    refinfo/       Reference information
  870.       
  871.        sqlsyntax/ Yacc and lex syntax and C source code for SQL1 and SQL2
  872.             from ftp.uu.net:/pub/uunet/published/oreilly/nutshell/yacclex, 
  873.             and a draft SQL3 syntax from Jeff Fried <jfried@informix.com>+      
  874.        formats/   Details of file formats such as Lotus 1-2-3 .WK1
  875.  
  876.     There are also a number of non SQL database interfaces for perl
  877.     available from ftp.demon.co.uk.  These include:
  878.  
  879.     Directory    Target System    Authors and notes
  880.     ---------    -------------    -------------------------------------------
  881.     btreeperl    NDBM extension    John Conover (john@johncon.com)
  882.     ctreeperl    CTree extension John Conover (john@johncon.com)
  883.     duaperl    X.500 DUA    Eric Douglas
  884.     rdb        RDBMS        Walt Hobbs (hobbs@rand.org)
  885.     shql    SQL Engine    Bruce Momjian (root@candle.uucp)
  886.  
  887.  
  888. 1.21) Which DBM should I use?
  889.  
  890.     As shipped, Perl (version 5) comes with interfaces for several DBM
  891.     packages (SDBM, old DBM, NDBM, GDBM, Berkeley DBM) that are not supplied  
  892.     but either come with your system are readily accessible via FTP.  SDBM
  893.     is guaranteed to be there.  For a comparison, see AnyDBM_File(3pm)
  894.     and DB_File(3pm).
  895.  
  896.     
  897. 1.22) Is there an SNMP aware Perl?
  898.  
  899.     snmperl was written by Guy Streeter (streeter@ingr.com), and was
  900.     posted in late February 1993 to comp.protocols.snmp.  It can be found
  901.     archived at one of two (known) places:
  902.  
  903.     Host liasun3.epfl.ch
  904.  
  905.     Location: /pub/net/snmp
  906.            FILE -rw-rw-r--       3407  Aug 11 1992  snmperl.README
  907.            FILE -rw-r--r--      17678  Aug 11 1992  snmperl.tar.Z
  908.  
  909.     Host ftp.cis.ufl.edu
  910.     Location: /pub/perl/scripts/snmp
  911.  
  912.     Here is the gist of the README:
  913.  
  914.     This directory contains the source code to add callable C subroutines
  915.     to perl.  The subroutines implement the SNMP functions "get",
  916.     "getnext", and "set".  They use the freely-distributable SNMP package
  917.     (version 1.1b) from CMU.
  918.  
  919.     USE:
  920.       There are four subroutines defined in the callable interface:
  921.     snmp_get, snmp_next, snmp_set, and snmp_error.
  922.  
  923.       snmp_get and snmp_next implement the GET and GETNEXT operations,
  924.     respectively.  The first two calling arguments are the hostname and
  925.     Community string.  The IP address of the host, as a dotted-quad ASCII
  926.     string, may be used as the hostname.  The rest of the calling
  927.     arguments are a list of variables.  See the CMU package documentation
  928.     for how variables may be specified.
  929.       snmp_set also takes hostname and Community string as arguments.  The
  930.     remaining arguments are a list of triples consisting of variable name,
  931.     variable type, and value.  The variable type is a string, such as
  932.     "INTEGER" or "IpAddress".
  933.       snmp_get, snmp_next, and snmp_set return a list containing
  934.     alternating variables and values.  snmp_get and snmp_next will simply
  935.     omit non-existent variables on return.  snmp_set will fail completely
  936.     if one of the specified variables does not exist (or is read-only).
  937.       snmp_error will return a text string containing some error
  938.     information about the most recent snmp_get|next|set call, if it had an
  939.     error.
  940.  
  941.     OTHER NOTES:
  942.       I didn't find all the places where the CMU library writes to stderr
  943.     or calls exit() directly.
  944.       The changes I made to mib.c involve the formatting of variable values
  945.     for return to the caller.  I took out the descriptive prefix so the
  946.     string contains only the value.
  947.       Enumerated types are returned as a string containing the symbolic
  948.     representation followed in parentheses by the numeric.
  949.  
  950.     DISTRIBUTION and OWNERSHIP
  951.       perl and the CMU SNMP package have their own statements.  Read them.
  952.     The work I've done is free and clear.  Just don't say you wrote it if
  953.     you didn't, and don't say I wrote it if you change it.
  954.  
  955.     Guy Streeter
  956.     streeter@ingr.com
  957.     April 1, 1992 (not a joke!)
  958.  
  959.  
  960. 1.23) Is there an ISO or ANSI certified version of Perl?
  961.  
  962.     No.  Larry thinks it likely that he'll be certified before perl is.
  963.  
  964. --
  965. Stephen P Potter        Pencom Systems Administration              Beaching It 
  966. spp@psa.pencom.com    Pager: 1-800-759-8888, 547-9561     Work: 703-860-2222
  967.   Cthulhu for President in '96: When You're Tired of the Lesser of Two Evils
  968. --
  969. Stephen P Potter        Pencom Systems Administration              Beaching It 
  970. spp@psa.pencom.com    Pager: 1-800-759-8888, 547-9561     Work: 703-860-2222
  971. "I don't care whether people actually like Perl, just so long as they *think*
  972.     they like it...  ;-)"    -Larry Wall
  973.