in reply to Why is perl so frequently used for automation?

A lot of automation tasks involve text processing which Perl is very good at. Perl can also be very quick to develop applications because of a very short development cycle, good testing tools a a language well adapted to rapid prototyping. Automation is an area where rapid changes are often required to the code with a requirement that the changes won't break stuff so Perl is a good candidate.

True laziness is hard work
  • Comment on Re: Why is perl so frequently used for automation?

Replies are listed 'Best First'.
Re^2: Why is perl so frequently used for automation?
by Your Mother (Archbishop) on Apr 16, 2012 at 15:12 UTC

    This is exactly right, I think. High level interpreted languages are the best match for this problem space: outside forces can frequently break your code. And of those in wide use Perl has the biggest bottle of glue.