Perl--Practical Extraction and Report Language(實際提取和報告語言)
1.1 What Is Perl?
"Laziness, impatience, and hubris. Great Perl programmers embrace those virtues."
—Larry Wall
Perl是開源的解釋語言。Perl最初用于Unix,但現在已經發展成為一種跨平臺的語言。Perl腳本相似于Unix的awk,sed,Shell腳本和C語言。
1.2What Is an Interpreted Language?
Perl程序需要文本編輯器和Perl解釋器。Perl是在運行時解析和執行的,而不是先被編譯成二進制的形式,然后再運行。
1.3. Who Uses Perl?
任何人都可以使用Perl
1.4. Where to Get Perl
(1)官方Perl:
www.perl.com
(2)Perl Directory:
www.perl.org
(3)Perl Archive Network:
http://www.cpan.org/
(4)Perl開發基礎:
http://www.activestate.com/
1.5. What Is CPAN?
CPAN指的是Comprehensive Perl Archive Network。其中保存著所有免費的Perl資料。
www.perl.com/CPAN
www.cpan.org
1.6. Perl Documentation
man perl
如果你想找到指定的模塊如何工作,可以使用perldoc. 例如 perldoc CGI
如果想得到指定Perl函數的的文檔,可以使用perldox -f.例如 perldoc -f localtime
1.7. What You Should Know
1. Who wrote Perl?
2. What does Perl stand for?
3. What is the meaning of "open source"?
4. What is the current release?
5. What is Perl used for?
6. What is an interpreter?
7. Where can you get Perl?
8. What is ActivePerl?
9. What is CPAN?
10. Where do you get documentation?
11. How would you find documentation for a specific Perl function?
posted on 2008-06-17 22:25
一葉笑天 閱讀(260)
評論(0) 編輯 收藏 所屬分類:
Perl技術