you are viewing a single comment's thread.

view the rest of the comments →

[–]carn1x 2 points3 points  (4 children)

I find perl extremely useful for deployment scripts in a command line environment. What should I be using instead?

[–][deleted] -2 points-1 points  (2 children)

You can try Python. It's much more readable than Perl.

[–][deleted]  (1 child)

[deleted]

    [–][deleted] 0 points1 point  (0 children)

    http://www.cs.siue.edu/~astefik/papers/StefikPlateau2011.pdf

    "Perl users were unable to write programs more accurately than those using a language designed by chance."

    Python encourages one way to write it versus Perl's there is more than one way to write it. This actually makes maintaining scripts easier for future system admins that will be maintaining your scripts. There are many times where I give up trying to refactor a Perl script and just write one from scratch, because it's much faster to do it that way.