If you're familiar with C and Unix, Perl seems like a natural fit. The syntax is similar, but you get a lot of other "benefits" such as:
- Regular expressions
- Strings of unlimited size
- Arrays of unlimited size and type
- Easier file maniplation
- Hash tables
- CPAN
- Flexible syntax
- and more...
It's debatable whether you'll think features such as automatic type coercion, undefined values, and the sometimes-cryptic syntax are beneficial. I'll tell you this, however: with Perl, it was not uncommon for me to write a 100+ line program in a single sitting and have it work perfectly the first time I ran it. Not having to worry about declaring variables, overrunning arrays, and dealing with illegal null values allowed me to focus on solving the problem, not getting beat up by the compiler.
A lot is going to depend on what you need your scripting language for. I found Perl useful for the one-off programs I needed and for doing system administration tasks (chowing through log files, screen-scraping web sites, monitoring system resources, etc.)
My gut feeling, though, is that if you haven't had prior experience with Unix utilities such as grep, awk, and sed, you may not "get" Perl. In Perl-land, problems are best solved with hashes and regular expressions. They are far more productive (in terms of programmer time) than trying to shoehorn every data structure into arrays.