Where I can find good tutorials about Perl ?? Could anyone help me ??
ThanX...
:confused:
Printable View
Where I can find good tutorials about Perl ?? Could anyone help me ??
ThanX...
:confused:
I can't remember the author, but the best book I've seen is Perl 5 by Example. I bought it on Amazon and I've been able to figure everything out that I need from that one book. The cover is red with white text.
B-Man
Why not try searching google.com? Maybe learning how to use a search engine would be a better start than learning a scripting language?
Example: "Perl 5" +"Tutorial"
Ok... Thanx for the help JParker... But I just was to know if any of you could help with a really good one... not any one ! Understand ?
O'reilly probably make the most authorative books on perl
http://www.oreilly.com/
Perl sites:
http://www.perl.com - Would you have guessed it?
http://www.google.com/ - Search for Perl
pwaring
petemcevoy is correct. The most highly regarded Perl book I've seen is Learning Perl 3rd edition by Randal L. Schwartz, Tom Phoenix is considered to be the best. (it's 4 stars based on 180 reviews at Amazon) I used it to start self-teaching myself Perl and it's easy read as well as good labs or exercises.
You should be able to go to sites like www.perl.com or others afterwards for more advanced topics. Alternatively you can check out either Programming Perl or Perl Cookbook (also O'Reilly publications) for more advanced Perl knowledge.
Why are you being such a dick ?Quote:
Originally posted by jparker
Why not try searching google.com? Maybe learning how to use a search engine would be a better start than learning a scripting language?
Example: "Perl 5" +"Tutorial"
he was just asking if any one could
recomend a good tutorial..
any ways you might want to check out
http://www.code.box.sk
http://cgi.resourceindex.com/
oh and jparker
wouldn't "Perl 5 Tutorial" do the same thing with out the +Quote:
Maybe learning how to use a search engine would be a better start than learning a scripting language?
Example: "Perl 5" +"Tutorial" [/B]
??
just checking if your up to date with you "mad skills" with
search engines ?
don't forget www.webmonkey.com , they have tutorials on just about anything, including PERL
Of course, nothing beats having a good book right in front of you while you code.....
Thanx to you all !
:thumbsup:
http://images.antionline.com/images/icons/icon14.gif good point about having a book in front of you :)Quote:
Originally posted by Agent Johnson
don't forget www.webmonkey.com , they have tutorials on just about anything, including PERL
Of course, nothing beats having a good book right in front of you while you code.....
and its real easy to find a good book
just check out www.amazon.com and check out the top programing books and you should find something usefull
CrazyShaman check your PM's !!!!!!!!
Yep, right on the money, you want to learn Perl I would highly suggest buying Learning Perl, and then Programming Perl (both O'reilly books)Quote:
Originally posted by petemcevoy
O'reilly probably make the most authorative books on perl
http://www.oreilly.com/
After that, go to www.perlmonks.org
made for beginners
learn.perl.org
Also I visit Perl Monks everyday.
Perl by Example
I believe the 3rd edition is out.
by Ellie Quigley
Prentice Hall.
and
Programming Perl
3rd Edition
By the Perl GODS themselves
Larry Wall, Tom Christiansen and Randal L. Schwartz
O'Reilly Press
Mag-Rag
The Perl Journal.
Most information without the advertizement on every page.
http://www.tpj.com for subscription
Additional valid information can be found on almost any Linux or Unix machine with Perl installed.
Information Copied from Man Pages.
>man perl
For ease of access, the Perl manual has been split up into a number of
sections:
perl Perl overview (this section)
perldelta Perl changes since previous version
perlfaq Perl frequently asked questions
perldata Perl data structures
perlsyn Perl syntax
perlop Perl operators and precedence
perlre Perl regular expressions
perlrun Perl execution and options
perlfunc Perl builtin functions
perlvar Perl predefined variables
perlsub Perl subroutines
perlmod Perl modules: how they work
perlmodlib Perl modules: how to write and use
perlform Perl formats
perllocale Perl locale support
perlref Perl references
perldsc Perl data structures intro
perllol Perl data structures: lists of lists
perltoot Perl OO tutorial
perlobj Perl objects
perltie Perl objects hidden behind simple variables
perlbot Perl OO tricks and examples
perlipc Perl interprocess communication
perldebug Perl debugging
perldiag Perl diagnostic messages
perlsec Perl security
perltrap Perl traps for the unwary
perlstyle Perl style guide
perlpod Perl plain old documentation
perlbook Perl book information
perlembed Perl ways to embed perl in your C or C++ application
perlapio Perl internal IO abstraction interface
perlxs Perl XS application programming interface
perlxstut Perl XS tutorial
perlguts Perl internal functions for those doing extensions
perlcall Perl calling conventions from C
web monkey
web monkeys link above is good page for learning stuff for the web like javascript cgi etc thought you might like to know
First of all "The Camel Book" (AKA Programming Perl) by Wall, Christianisen, and Orwant is the definitive Perl tutorial. Nothing else comes close.
Second of all, newbies shouldn't start with Perl. It's a great tool for making quick hacks, but it's a very eclectic language (Perl stands for Pathological Eclectic Rubbish Lister) with insane amounts of syntax and it will make things harder for you in the long run. Learn Scheme, then Python, then C/C++, then Perl.