Difference between revisions of "Perl"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
''' | ''' | ||
This page is for notes, tips, tricks and snippets of code I've learned over the years, though since it's brand new, there is nothing here yet. However, I will add content as I am able to and as time permits. | This page is for notes, tips, tricks and snippets of code I've learned over the years, though since it's brand new, there is nothing here yet. However, I will add content as I am able to and as time permits. | ||
+ | |||
+ | == CPAN == | ||
+ | Perl module repository. | ||
+ | <br> | ||
+ | To install modules from the command line using CPAN, use the following command: | ||
+ | <pre> | ||
+ | perl -MCPAN -e 'install module::name' | ||
+ | </pre> | ||
+ | <br> | ||
+ | <br> |
Latest revision as of 09:36, 9 November 2011
PERL - Practical Exctraction & Reporting Language
This page is for notes, tips, tricks and snippets of code I've learned over the years, though since it's brand new, there is nothing here yet. However, I will add content as I am able to and as time permits.
CPAN
Perl module repository.
To install modules from the command line using CPAN, use the following command:
perl -MCPAN -e 'install module::name'