Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to start learning Perl from scratch and I need to find some good tutorials and books to begin with. I found this tutorial very helpful and I'm wondering if you guys know of some more useful resources to help me learn more about this language.

share|improve this question
1  
2  
I've seen a link to the Camel book, which is how I learned perl :) – Andomar May 23 '09 at 19:59
2  
The Camel book is particularly useless. – anon May 23 '09 at 20:34
Did you read the comment at the start of that tutorial? It's about Perl 4. It's horribly out of date and is only of historical interest. Try some of the links from learn.perl.org. – Dave Cross Nov 6 '11 at 12:07

closed as not constructive by Bill the Lizard Apr 18 '12 at 12:07

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

19 Answers

up vote 22 down vote accepted

Learning Perl (AKA 'The Llama Book') is what I learnt from, and it comes highly recommended.

Beginning Perl is also very popular, with the advantage that it's freely available in PDF format from that link.

share|improve this answer

http://learn.perl.org/ is a nice start. Specially check their online library.

share|improve this answer

If you're looking for on-line materials from which to learn, then the Perl 5 wiki has a page on Recommended online tutorials including those for beginners. I'd recommend you take a look at it.

More specifically, Perl Training Australia has all of its course notes available for download in PDF format. The Programming Perl manual is specifically designed for developers who want to learn Perl, and already have some experience with other languages. They're regularly updated, as they're the same books you get when you come on one of Perl Training Australia's courses.

I can also highly recommend Learning Perl and Intermediate Perl as physical books. Not only are they kept up to date (the latest editions covers Perl 5.10), but they are also written by people who teach Perl for a living, and at least one of which is an active stackoverflow member. ;)

Disclaimer: I'm one of the authors of Perl Training Australia's course manuals, and own half the company, so I naturally think our course notes rock..

share|improve this answer

This exact situation happened to me just over a year ago. I learned Perl largely from Randal starting with Learning Perl. Learning Perl has got to be one of the best books on beginning programming I've read (and I have many). After learning Perl I went into Intermediate Perl. I also read Randal Schwartz's Perls of Wisdom and loved it. I even ended up listening to Floss Weekly as a result of reading Randal's books.

share|improve this answer

You can take a look at the Perlmonks Tutorials page

share|improve this answer

I find the Camel Book most useful as reference, but you also have to realize that ~95% of its contents is word for word taken from perldoc.

If you need a concise, show me the basics, Learning Perl or the llama book is still the best. But I would also get the Camel Book, because it is handy :-)

share|improve this answer

"Learning Perl" (no earlier than 4th edition) or "Beginning Perl" have exercises. I started with exercises from "Learning Perl".

For web programming using CGI, you can read Ovid's CGI Course.

And of course, you should learn how to use CPAN - best tool for Perl programming.

share|improve this answer

Learn Perl has some resources. Perl has an excellent community. Checkout The Monastery Gates.

Perl Beginners' Site: Perl - because programming should be fun

Also, do not forget to read perldoc perlintro.

Happy Perl-ing. :-)

share|improve this answer

I think this can be a good platform for you.

share|improve this answer

When I was getting started with Perl, I got a lot of mileage out of Randal Schwartz's columns in various (now defunct) magazines. Fortunately, Randal has the articles online here. The columns solve real problems, and walk you through the solutions step by step.

share|improve this answer

Just a couple of minutes ago I was reminded of a lesser known alternative: Learning Perl The Hard Way (available under the GNU Free Documentation License),

share|improve this answer

Learning Perl is a lot like learning any other language: review source code, scroogle for Perl help, and ask questions on SO.

Easiest way to learn, well really depends on your own learning style. Many of us learn by doing, but others learn better in the class room.

How do you best learn?

share|improve this answer

The Perl Beginners' Site concentrates all information for people who are new to Perl.

share|improve this answer

A great way is to use the new language in this case perl to re-code all the programs you wrote.

share|improve this answer

Perl Testing Notebook is great for test automation, test driven development and unit test. link text

share|improve this answer

Picking up Perl gives you a good idea.

The documentation, especially the tutorials, are invaluable:

 perldoc perldoc

On your computer (you might also have HTML versions installed). If you haven't installed Perl on your development machine yet, you can browse http://perldoc.perl.org/

Start at http://perldoc.perl.org/index-overview.html

share|improve this answer

As others have said, the Llama book. Then move on to 'Mastering Regular Expressions' and 'Perl Cookbook'. I skipped the Camel book altogether, and just use it for reference.

share|improve this answer
  1. Start with "Learning Perl".
  2. Refer perldoc.
  3. Make an account in perlmonks and chat with the perl pros to seek guidance.
  4. Check the questions asked at Stackoverflow under perl-tag.
  5. Subscribe to the perl groups at google-groups.
share|improve this answer

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