溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux安裝Perl

發(fā)布時(shí)間:2020-07-25 08:18:12 來(lái)源:網(wǎng)絡(luò) 閱讀:1252 作者:我不是九爺 欄目:云計(jì)算
安裝Perl

一個(gè)命令基本上就搞定了,如果環(huán)境能夠聯(lián)網(wǎng)的話。

#?yum?install?perl*

如果不能聯(lián)網(wǎng),可以下載最新的源碼包進(jìn)行編譯安裝。

#?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.
編寫(xiě)第一個(gè)Perl程序

創(chuàng)建Perl腳本;

#?touch?test.pl

編寫(xiě)Hello World程序;

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

執(zhí)行程序;

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

成功!





向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI