Perl 开发的学习-1
Perl: Practical Extraction and Report Language,现在的说法,但开始不是这样的.是由Larry Wall 在1987年12月18日发行了第一版. 现在最常见是第五版. 通常大部分UNIX/LINUX都预置了不同版本的Perl,有些特殊的软件如Apache/Oracle也预置了. Perl目前的官方网站http://www.perl.org/ Perl的发布通常分成两种一种是Binary形式,主要是由Activestate公司提供http://www.activestate.com/activeperl/downloads 通常在Windows上都是选择Binary包ActivePerl.另一种形式是sourcecode形式,特别是在linux版本上,可以采用如下方法: isdlins(root)>#wget http://www.cpan.org/src/5.0/perl-5.14.1.tar.gz isdlins(root)>#tar -xzf perl-5.14.1.tar.gz isdlins(root)>#cd perl-5.14.1 isdlins(root)>#./Configure -des -Dprefix=$HOME/localperl isdlins(root)>#make isdlins(root)>#make test isdlins(root)>#make install 查看当前安装的Perl版本,在linux/Unix可用如下命令查看: [root@windriver-machine pne4.0]# perl -version This is perl, v5.8.8 built for i386-linux-thread-multi Copyright 1987-2006, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit. Complete documentation for Perl, including FAQ lists, should be found on this system using "man perl" or "perldoc perl". If you have access to the Internet, point your browser at http://www.perl.org/, the Perl Home Page. [root@windriver-machine pne4.0]# Perl运行非常广泛,特别是系统管理上,Perl功能非常强大,强大的让你几乎难以置信.按照官方描述,这里将Perl 功能分为如下几大类:
Perl通常都使用一些基本的文本编辑工具进行开发,Eclipse也有perl的插件,但最多的还是VI. 首行 #!/usr/bin/perl,在windows平台不一定要求严格对应指定的perl执行路径,但字符串一定是perl. |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |