Inhaltsverzeichnis
Perl
Perl is the acronym for „Practical Extraction and Reporting Language“.
Documentation:
Quick Reference
Tutorials
Validation:
Resources:
- http://www.cpan.org – The Comprehensive Perl Archive Network
- http://www.cpan.org/ports – Perl Ports
Recommended Reading
- Einführung in Perl – A comprehensive introduction for beginners (focused on CGI programming)
More details on Perl-Module - Perl & LWP – The Perl web client library.
Perl by Example
- Present a Usage message.
- Perthon – Python to Perl Language Translation
One Liners
Command Line Options
Sleep
Serial Interface
Here Documents
Perl and CSV
Perl and Excel
Perl and Micro$oft Windows
- [http://www.perlmonks.org/?node_id=984508|Perl on Windows Best Practices?]]
HTML
- Related Perl Modules
Files
- Beginners guide to File::Find – and even more advanced uses (e.g. the pre- and postprocess feature).
- Perl: how to split a file? 1) – split file at matching separator string
Frequently Asked Questions
How to install Perl modules from CPAN?
The module HTML::Template for example, may be installed from shell with below command
perl -MCPAN -e 'install HTML::Template'
Source: http://perl.about.com/od/packagesmodules/qt/perlcpan.htm
How can I programmatically convert Word doc or docx files into text files?
Here is an example using Win32::OLE.