- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Perl sites... where do you get programming inf...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2004 05:34 AM
тАО07-02-2004 05:34 AM
Perl sites... where do you get programming info?
I found a great resource page on http://www.perl.org site....
They have some online book resources with FULL TEXT in some cases... http://learn.perl.org/library/
Post your favorite Perl resource for a few points...
The book I am currently using is "Perl Core Language" ISBN 1-57610-426-5
There is a 2nd ed just came out this year.
- Tags:
- Perl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2004 05:38 AM
тАО07-02-2004 05:38 AM
Re: Perl sites... where do you get programming info?
the PERL COOKBOOK from O'reilly
http://www.oreilly.com/catalog/perlckbk2/index.html
and u can read it using the safaari.
regds
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2004 05:49 AM
тАО07-02-2004 05:49 AM
Re: Perl sites... where do you get programming info?
http://www.perldoc.com/
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2004 05:54 AM
тАО07-02-2004 05:54 AM
Re: Perl sites... where do you get programming info?
I also have Perl for System Administration, o'Reilly, but I haven't found it to be nearly as useful as the Cookbook.
Of course I need the Camel book, since I'm still trying to advance my minimal perl abilities.
- John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2004 06:47 AM
тАО07-03-2004 06:47 AM
Re: Perl sites... where do you get programming info?
To click on the links in this text:
--8<---
For those that are not (yet) comfortable with Perl, Wendy van Dijk has put up a nice article on use.perl.org titled "Where and how to start learning Perl".
-->8---
Enjoy, Have FUN! H.merijn [ perl fanatic ]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-04-2004 06:35 AM
тАО07-04-2004 06:35 AM
Re: Perl sites... where do you get programming info?
I like this one:
http://www.mit.edu:8001/perl/perl.html
Regards,
Sri Ram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-04-2004 06:01 PM
тАО07-04-2004 06:01 PM
Re: Perl sites... where do you get programming info?
i have this one bookmarked to my favourites:http://perlmonks.org/index.pl?node_id=284175
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-04-2004 06:12 PM
тАО07-04-2004 06:12 PM
Re: Perl sites... where do you get programming info?
This is what you get from perldoc.
Starting from the official site at http://www.perl.org/docs.html you get there too, at
http://search.cpan.org/dist/perl/ which also includes the shipped extensions (modules) documentation.
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 01:39 AM
тАО07-06-2004 01:39 AM
Re: Perl sites... where do you get programming info?
PERL Black Book by Steven Holzner
Published by CoriolisOpen Press
ISBN1 57620-465-6
1283 Pages with a CD ROM
One sweet deal.
The author's approach is somewhat novel. He provides somewhat of a dialog between various people and discusses some of the reasons for using various features. It's not your typical book and for me the style took some getting used to. However, it has a lot of really good examples and really showcases the power of PERL.
This book helped me write a telnet script to go out and poll all of my routers (close to 200) and gather statistics from them for review.
So. Steven where ever you are......
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 02:58 AM
тАО07-06-2004 02:58 AM
Re: Perl sites... where do you get programming info?
This is how I learn and keep up with Perl:
I simply use Google and search for specific Perl scripts that I immediately need. I then copy that script over, analyze line by line and study syntax that may be greek to me. Once I have the syntax figured out using any resource (book, web, other scripts).. I thence "assemble" my final script.
Perl code -- to be effective, need not be 'fancy'. If you know KSH,CSH,C... try finding out first what the equivalent Perl Code is for the most common scripting routines.. ie. looping, arithmetic, conditionals, formatting, regular expressions and File/IO.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 03:04 AM
тАО07-06-2004 03:04 AM
Re: Perl sites... where do you get programming info?
There's also a "Where and How to Start Learning Perl" link - http://perlmonks.org/index.pl?node_id=284175
Enjoy!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 06:40 AM
тАО07-06-2004 06:40 AM
Re: Perl sites... where do you get programming info?
but I am trying to learn perl not just for quick scripts.
Trying to get my skill set upto date...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 12:46 PM
тАО07-06-2004 12:46 PM
Re: Perl sites... where do you get programming info?
www.tek-tips.com
Some of the best and most helpful perl scripters around.
JMHO
Nick