2022
我们一起努力

Linux系统安装perl具体步骤

Linux系统如何安装perl?Perl是一种动态解释型的脚本语言,借取了C、sed、awk、shell scripting 以及很多其他编程語言的特性,下面良许教程网为大家分享一下Linux系统安装perl具体步骤

Linux系统安装perl具体步骤

Linux系统安装perl具体步骤

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

 # 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系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你!

137e00002230ad9f26e78-265x300

本文来源:www.lxlinux.net/2015.html,若引用不当,请联系修改。

赞(0)
文章名称:《Linux系统安装perl具体步骤》
文章链接:https://www.fzvps.com/235515.html
本站文章来源于互联网,如有侵权,请联系管理删除,本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
图片版权归属各自创作者所有,图片水印出于防止被无耻之徒盗取劳动成果的目的。

评论 抢沙发

评论前必须登录!