vote up 15 vote down star
8

I decided to learn Perl after realizing that most of my bash scripts were getting rather unwieldy in their current form and would become a maintenance nightmare if I continued down that path. A friend showed me a couple of examples using regular expressions and in-built modules in Perl and I was hooked instantly. To that effect I borrowed a copy of "Learning Perl" (great) and "Beginning Perl" (not quite), registered on PerlMonks and downloaded a copy of the perldoc which has become a bible of sorts for me currently.

As of this moment I fell comfortable with the basics, though topics such as building modules, OOP and to an extent, references, still continue to elude me. The material in the above mentioned books is rather sparse for these topics and since my interest now goes beyond just converting shell scripts I would like to delve further into the language. Any suggestions on which books / materials I should peruse? Are there any projects out there in the wild that would help my learning and give me a better grasp of larger programs written in Perl?

Please note that my basic day to day tasks involve system administration but I also like to devote time to open-source projects in any capacity whatsoever. All suggestions, links and tips are welcome. My next read is going to be Intermediate Perl but I am always open to other suggestions.

flag

70% accept rate
2  
Learning Python comes next. :-) – David Segonds Feb 17 at 4:50
Since he's going the Perl route, learning Ruby next seems a natural choice rather... :-P – Renaud Bompuis Feb 17 at 9:54
Forgeting Perl? (and then learning Python) – Martin Beckett Feb 18 at 4:27
Or forgeting (sic) how to spell, @mgb :-) – paxdiablo Feb 18 at 6:25

20 Answers

vote up 11 vote down

From the same series, I have Perl Cookbook, Programming Perl and Advanced Perl Programming. As well as being very handy, they look quite nice side-by-side on my bookshelf.

I'd never heard of Intermediate Perl, I went straight from "Programming Perl" to "Advanced Perl Programming" to Python :-)

Perl Cookbook

Programming Perl

Advanced Perl Programming

link|flag
'Programming Perl' is my primary dead tree source of Perl info - I bought it around 6 years ago and have consulted it within the last week. – Cebjyre Feb 17 at 3:48
Please don't read the Perl Cookbook. It is horrifyingly outdated, and will set your Perl knowledge back at least a decade. – jrockway Jun 4 at 16:14
"Intermediate Perl" was previously known as "Perl Objects, References and Modules". (aka PORM) – Sean McMillan Sep 16 at 20:13
vote up 10 vote down

Reading the Perl Cookbook is a great way to see it tackle real-life scenarios.
For system administration, there is the Perl for System Administration which is quite useful.

For learning about references and complex data structures, the perlref tutorial is pretty good.

link|flag
vote up 8 vote down

Learning Perl is the first in a trio of books. The next two are Intermediate Perl and Mastering Perl.

Many people are recommending Programming Perl. It's decent for major features, but it's dated. It was written 10 years ago. You'll do better with the Perl documentation now.

perlfaq2 has a list of notable Perl books too, and books.perl.org attempts to collect information along with reviews and ratings on every Perl book.

link|flag
The problem with reading the perldoc manual is that things can seem quite fragmented when you are not searching for something in particular and just want to learn the nitty-grittys of the language. – muteW Feb 17 at 11:08
I think you must not have seen the documentation recently. There are lots of sections that pull together task-oriented comments. – brian d foy Feb 17 at 17:39
vote up 6 vote down

Higher-Order Perl

link|flag
HOP is a fantastic, mind-bending book, but it should come years after reading Learning Perl. – Michael Carman Feb 18 at 3:01
I discovered this book right after posting this question and have been fascinated by it ever since. – muteW Jun 23 at 5:05
vote up 6 vote down

I learnt my Perl from Programming Perl. This book is regarded as one of the computing classics so I recommend having it even if you have already dipped you toe into Perl with Learning Perl.

Despite some suggestions here.... moving to Python or Ruby isn't going to magically make u write better programs ;-(    However reading Perl Best Practices probably will ;-)

After PBP I highly recommend Advanced Perl Programming & Higher-Order Perl

Oh and when it comes to OOP then look no further than Moose. There is even a Moose Manual to peruse.

/I3az/

link|flag
vote up 5 vote down

The camel should be next after the llama.

Programming Perl

link|flag
vote up 5 vote down

There is of course the next step. Intermediate Perl. This book will teach you some of the the things you mentioned as eluding you.

link|flag
vote up 3 vote down

Mastering Regular Expressions

link|flag
vote up 3 vote down

Hi in case you're interested in learning Perl to do web apps. Then Catalyst is for you.

Or you're a speed freak and love to tweak stuff around, then try the algorithm book.

link|flag
Catalyst is actually a good framework to apply intermediate to advanced programming techniques as well. – singingfish Feb 17 at 8:29
vote up 3 vote down

Well, Intermediate Perl is intended to be as the sequel to "Learning Perl" and Mastering Perl as the third book in the series, so you may wish to try them. I personally haven't read any of them.

I can personally recommend Programming Perl (a.k.a "The Camel Book") but I now feel it may encourage many bad practices. Perl Best Practices is also a recommended read after you know enough Perl just to enlighten one about proper daily decisions in your coding. I and other people who've read the book consciously deviate from its recommendations, but they still should be considered.

You may also wish to read the material on perldoc.perl.org especially the tutorials, though I am mostly using them only for reference.

Finally, I'd like to pitch my Perl for Newbies series of presentations, which aims to teach a horizontal subset of Perl using many examples. There is still a lot of material I'd like to cover there, but I have other priorities. And I still may encourage some relatively old practices. Still, it is there for your perusal and is licensed under the CC-Public-Domain.

link|flag
Do you mean "inhibit"? It sounds like "suggest", "impart", "advocate" may be closer to your meaning. PP is a great read and reread. But it does show its age. PBP is a very good read, and should definitely follow LP. – daotoad Feb 17 at 18:51
daotoad: where do you see "inhibit" or whatever? – shlomif Feb 18 at 17:02
vote up 2 vote down

Although it may not be quite the answer you're looking for, something you could consider is sidestepping into another language where it might be easier to pick up some of the concepts you're having trouble with. Java is a great way to learn the concepts of object-oriented programming, Python might be good for modules, and studying pointers in C might help prepare you for understanding references in Perl (well, after you study pointers, references might be a piece of cake!). The disadvantage is, of course, that all these things will take time away from your Perl studies and quite possibly break your concentration, and for that reason I'd hesitate to recommend jumping ship to another language at this point. I'm sure other people will offer other, more Perl-centric suggestions. But it is at least something to consider - especially later on, once you're feeling more comfortable with your first (second? ...) language.

link|flag
vote up 2 vote down

I would highly recommend heading over to Perl's documentation online and browse through the tutorials section.

Particular favorites include the following:

You should be able to get these on any machine that has has perl as well (via perldoc perlreftut or the like), but it's nice to be able to get them with hyperlinks and with the option of saving them as pdfs. After that, I would browse through the FAQ, maybe a section a day. Not all of them will matter to you (or not right away), but you can learn a ton from them.

link|flag
vote up 1 vote down

Whenever I want to learn a new language, I read up with some beginners books as you mentioned, but what helps me most is applying what I know to a task that I need done. In otherwords, instead of writing your next bash script use Perl.

Not quite as often I've taken scripts that I had written in one language and rewrote them in the new language.

I do this, because I've learned in the past, writing "Hello, world!" applications or apps that just demo functions, don't really exercise your knowledge of the language.

link|flag
vote up 1 vote down

I'll second the recommendations for Mastering Regular Expressions and Programming Perl. But I would also recommend returning to the basics if you really want to become comfortable with Perl. Start with getting more acquainted with the AWK Programming Language and Sed. So much of Perl mastery comes from Sed and AWK.

Other than that, I'll bump the recommendation on learning Python as well. I have pretty much replaced my Perl usage with shell script for basic things and Python for anything even remotely complex.

link|flag
vote up 1 vote down

While not a book, I'd also check out Moose, an object oriented package for perl 5. If you ever plan on doing OO in Perl, you can't really do much better.

link|flag
vote up 1 vote down

Writing Obfuscated Perl.

link|flag
vote up 0 vote down

I Highly, Highly recommend Perl Best Practices. There's a lot of good information in there about style and introduces you to a handful of common tools.

However, there's a lot modules that are not really best practices any more. Take a look at this commentary on the book for module recommendations.

link|flag
vote up 0 vote down

One intermediate book I found useful is

"Effective Perl Programming: 60 Methods and Rules for Scripting Better Programs"

By Joseph Hall and Randal Schwartz.

It's quite a short book, but clear and to the point.

link|flag
vote up -1 vote down

I moved from Perl to Ruby a long time back. It's a lot easier for me to code i.e. Ruby thinks the way I think - might not work for you.

Whenever I want to do Linux admin tasks, I am able to write those scripts in Ruby very quickly. Also wrote a basic DPF in some 5 hrs with Ruby + GTK + GStreamer.

Haven't worked extensively with Perl in the last 6 years, so again today's Perl might be completely different. Also, Perl has the largest user/script/knowledge base of all scripting languages.

link|flag
Not sure why negative points were left, the original poster has clearly mentioned "I am always open to other suggestions" – Ranjeet Feb 18 at 7:35
"I am always open to other suggestions" implied that I am willing to follow other paths to improve my "Perl" knowledge. I am not asking for suggestions on which language to move onto after Perl, but rather what do I do to improve my understanding of Perl. – muteW Feb 18 at 12:19
vote up -3 vote down

How about moving on to Python? Perl is a great language for powerful one-off scripts and text processing, but Python has great support for server processes and backend developement. In addition, once you get used to Python's interesting "scoping via indentation" you'll fall in love with the simple and clean look of the code, especially as compared to Perl...

link|flag
Honestly. How is learning Python going to help someone learn Perl? If you had said, "How about learning another language as well?" it would be a somewhat appropriate answer. But the other language ought to be something completely different. Learning a bit of Lisp helped me be better at Perl. – Jon Ericson Mar 6 at 23:52
I switched from Perl to Python and haven't looked back. – Casey Mar 7 at 0:12
When Python has weak typing and multiline lambdas I might consider it. – Chas. Owens Jun 4 at 17:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.