- ready interface to unix system services
Java 5 has a bit more sophisticated process management, but nothing directly related to unix.
- Open3 to control input and output between existing utility programs
You have this via the Runtime and Process objects.
- CPAN
It depends on how you look at CPAN. CPAN as something that provides API to basic needs? Java does it as well. More complex systems and these super algorithms and language changing modules, like WWW:Mechanize, Algorithm::Loops and pugs, no, java doesn't have it.
- associative arrays
Map object.
- scoped untyped variables
You can do some scoping, but not untyped.
- flexible choice of procedural versus OO (ksh is only procedural)
You can do non-oo in java, regardless of what the nay-sayers say. Just define all of your methods as static. You still have to refer to them as say ClassName.myStaticProc(...).
- perl -d (debugger - no such thing for ksh)
jdb
- perl's regexp engine is better than awk/sed's without needing to shell out
jakarta oro can do about anything perl5's regexp's can do, except commenting, execution of code w/i a regexp.
- perl's hashes are more flexible and scopable than formula engine's (Formula Engine provides only a single global hash).
dunno what this is
- perl can communicate more effectively with background processes.
In what way? You can kill, get the status of and read/write from background processes. Fork 'em off and what not.

In reply to Re: A Perl vs. Java fight brews by exussum0
in thread A Perl vs. Java fight brews by Moron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.