Sponsored Content
Top Forums Shell Programming and Scripting Any book to learn perl scripting Post 302397755 by thillai_selvan on Tuesday 23rd of February 2010 04:02:52 AM
Old 02-23-2010
For learning Perl you can use the following book
Learning Perl, 4th Edition (2005).chm
Intermediate Perl.chm

For learning the man pages in perl quick reference you can use the following
Perl functions A-Z - perldoc.perl.org

Last edited by pludi; 02-23-2010 at 05:30 AM..
 

9 More Discussions You Might Find Interesting

1. Linux

Looking for a good book to learn LINUX

I have just transferred from an mainframe DB2 area to an area that uses LINUX. Any suggestions for a good book to buy for learning LINUX? (1 Reply)
Discussion started by: bigdawg
1 Replies

2. Programming

book to learn pro c\c++

can any one help me and told me about a good books to learn 1- pro c/c++ under unix 2- programming network using c under unix thnx in advance. (1 Reply)
Discussion started by: kazanoova2
1 Replies

3. UNIX for Dummies Questions & Answers

Recommended book to learn about unix administration?

My knowledge is weak in understanding NIS servers, setting up user accounts, mounting network file systems, clearing stale NFS handles, those sorts of things that I encounter but my IT server team handles. Can anyone recommend a good book on the subject? Something to demystify mount points,... (1 Reply)
Discussion started by: srhadden
1 Replies

4. UNIX for Dummies Questions & Answers

good book to learn korn shell scripting

which is a gud book to learn advanced korn shell scripting? i know the basic shell scripting (1 Reply)
Discussion started by: shishirkotkar
1 Replies

5. UNIX for Dummies Questions & Answers

Best book to learn UNIX from the begining

What is the Best book to learn UNIX from the begining? am really a beginner and no nothing about UNIX, so what are the track that i have to trace in order to be a professional in UNIX and scripting? What are the best books to learn it and what are the certificates such as CCNA in networks... (5 Replies)
Discussion started by: eng.pirlo
5 Replies

6. Programming

Good book to learn C

I'd like to learn C but I wanted to ask if anyone knows of a good book to start with. I came across some folks who said the best one is 'The C programming language, second edition' but some reviews said that it's not for beginners. I am learning Java and UNIX on my Mac and am familiar with... (6 Replies)
Discussion started by: Straitsfan
6 Replies

7. UNIX for Dummies Questions & Answers

What is the best book to learn linux kernel?

I'm looking for a book to learn Linux Kernel Now I got a basic C and operating system concept Thanks (1 Reply)
Discussion started by: Runicer
1 Replies

8. What is on Your Mind?

Book to learn Perl

Hi guys, which book are you raccomand to start learn Perl from the ground ? (1 Reply)
Discussion started by: solaris_user
1 Replies

9. Shell Programming and Scripting

Need a good book to learn UNIX Shell Scripting

I'm going to be starting a job in a month or so that I need to brush up on my Unix shell scripting skills. About 15 years ago, I took a college class for Unix shell scripting. I would like to find a good college book again, rather than just going to Amazon and just buying anything. This is... (2 Replies)
Discussion started by: dorlow
2 Replies
Modern::Perl(3pm)					User Contributed Perl Documentation					 Modern::Perl(3pm)

NAME
Modern::Perl - enable all of the features of Modern Perl with one import VERSION
version 1.20120521 SYNOPSIS
Modern Perl programs use several modules to enable additional features of Perl and of the CPAN. Instead of copying and pasting all of these "use" lines, instead write only one: use Modern::Perl; This enables the strict and warnings pragmas, as well as all of the features available in Perl 5.10. It also enables C3 method resolution order as documented in "perldoc mro" and loads IO::File and IO::Handle so that you may call methods on filehandles. In the future, it may include additional core modules and pragmas. Because so much of this module's behavior uses lexically scoped pragmas, you may disable these pragmas within an inner scope with: no Modern::Perl; See http://www.modernperlbooks.com/mt/2009/01/toward-a-modernperl.html <http://www.modernperlbooks.com/mt/2009/01/toward-a-modernperl.html> for more information, <http://www.modernperlbooks.com/> for further discussion of Modern Perl and its implications, and <http://onyxneon.com/books/modern_perl/index.html> for a freely-downloadable Modern Perl tutorial. Forward Compatibility For forward compatibility, I recommend you specify a year as the single optional import tag. For example: use Modern::Perl '2009'; use Modern::Perl '2010'; ... both enable 5.10 features, while: use Modern::Perl '2011'; ... enables 5.12 features: use Modern::Perl '2012'; ... enables 5.14 features, and: use Modern::Perl '2013'; ... enables 5.16 features. Obviously you cannot use newer features on earlier versions. Perl will throw the appropriate exception if you try. In the near future--sometime around September 2012--this module may drop support for 5.10 and will complain (once per process) if you use a year too old. As of May 2012, Perl 5.12 is unsupported by the Perl 5 Porters, so please consider upgrading. AUTHOR
chromatic, "<chromatic at wgz.org>" BUGS
None reported. Please report any bugs or feature requests to "bug-modern-perl at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Modern-Perl <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Modern-Perl>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Modern::Perl You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Modern-Perl <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Modern-Perl> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Modern-Perl <http://annocpan.org/dist/Modern-Perl> o CPAN Ratings http://cpanratings.perl.org/d/Modern-Perl <http://cpanratings.perl.org/d/Modern-Perl> o Search CPAN http://search.cpan.org/dist/Modern-Perl/ <http://search.cpan.org/dist/Modern-Perl/> ACKNOWLEDGEMENTS
Damian Conway (inspiration from Toolkit), Florian Ragwitz (B::Hooks::Parser, so I didn't have to write it myself), chocolateboy (for suggesting that I don't even need B::Hooks::Parser), Damien Learns Perl, David Moreno, Evan Carroll, Elliot Shank, Andreas KA~Xnig, and Father Chrysostomos for reporting bugs, filing patches, and requesting features. COPYRIGHT &; LICENSE Copyright 2009-2012 chromatic, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.14 itself. AUTHOR
chromatic COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by chromatic@wgz.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-05-27 Modern::Perl(3pm)
All times are GMT -4. The time now is 03:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy