home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 2 / Geek_Gadgets_2_2352.bin / amigaos / dist / perl-4.036-bin.lha.pi < prev    next >
Text File  |  1997-04-15  |  2KB  |  47 lines

  1. .name
  2. perl4
  3. .fullname
  4. Practical Extraction and Report Language
  5. .type
  6. Programmer Tool
  7. .short
  8. Practical Extraction and Report Language
  9. .description
  10. Perl is an interpreted language optimized for scanning arbitrary text
  11. files, extracting information from those text files, and printing
  12. reports based on that information.  It's also a good language for many
  13. system management tasks.  The language is intended to be practical
  14. (easy to use, efficient, complete) rather than beautiful (tiny,
  15. elegant, minimal).  It combines (in the author's opinion, anyway) some
  16. of the best features of C, sed, awk, and sh, so people familiar with
  17. those languages should have little difficulty with it.  (Language
  18. historians will also note some vestiges of csh, Pascal, and even
  19. BASIC-PLUS.)  Expression syntax corresponds quite closely to C
  20. expression syntax.
  21.  
  22. Unlike most Unix utilities, perl does not arbitrarily limit the size
  23. of your data.  If you've got the memory, perl can slurp in your whole
  24. file as a single string.  Recursion is of unlimited depth.  And the
  25. hash tables used by associative arrays grow as necessary to prevent
  26. degraded performance.  Perl uses sophisticated pattern matching
  27. techniques to scan large amounts of data very quickly.  Although
  28. optimized for scanning text, perl can also deal with binary data, and
  29. can make dbm files look like associative arrays (where dbm is
  30. available).  Setuid perl scripts are safer than C programs through a
  31. dataflow tracing mechanism which prevents many stupid security holes.
  32. If you have a problem that would ordinarily use sed or awk or sh, but
  33. it exceeds their capabilities or must run a little faster, and you
  34. don't want to write the silly thing in C, then perl may be for you.
  35. There are also translators to turn your sed and awk scripts into perl
  36. scripts.
  37. .version
  38. 4.036
  39. .author
  40. Larry Wall
  41. .distribution
  42. GNU Public License
  43. .email
  44. lwall@netlabs.com
  45. .described-by
  46. Fred Fish (fnf@amigalib.com)
  47.