RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Linux安装Perl
安装Perl

一个命令基本上就搞定了,如果环境能够联网的话。

创新互联长期为近1000家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为芙蓉企业提供专业的成都做网站、网站设计,芙蓉网站改版等技术服务。拥有10年丰富建站经验和众多成功案例,为您定制开发。

# yum install perl*

如果不能联网,可以下载最新的源码包进行编译安装。

# wget  

# tar -xzf perl-5.24.1.tar.gz # cd perl-5.24.1 

# ./Configure -des -Dprefix=$HOME/localperl 

# make # make test # make install

查看安装成功的Perl版本:

[root@controller ~]# perl -vThis is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi
(with 34 registered patches, see perl -V for more detail)

Copyright 1987-2012, 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 onthis 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.
编写第一个Perl程序

创建Perl脚本;

# touch test.pl

编写Hello World程序;

#!/usr/bin/perlprint "Hello World!\n"

执行程序;

[root@controller ~]# perl test.pl Hello World!

成功!




新闻标题:Linux安装Perl
标题来源:http://sczitong.cn/article/ggjidi.html