Perl學習筆記(1)----入門

來源:互聯網
上載者:User

標籤:

在UNIX/Linux 系統上,開啟命令終端,輸入 ‘rpm -q perl‘ 查看系統是否安裝了 perl ---- 在自己的CentOS7 系統上,預設內建了 perl 軟體:

[email protected]:~/Documents/bash$ rpm -q perlperl-5.16.3-286.el7.x86_64

可以看到系統預設已經安裝了 perl5 軟體。

查看安裝位置:

[email protected]:~/Documents/bash$ which perl/bin/perl[email protected]:~/Documents/bash$ whereis perlperl: /usr/bin/perl /usr/share/man/man1/perl.1.gz

1. 第一個 Perl 程式

Perl 的語句用分號分隔。注釋以一個 # 開頭,一直到這一行的末尾。語句塊用花括弧括起來。下面是一個簡單的 "hello, world!" 程式:

#!/usr/bin/perlprint "Hello, world!\n";

給指令碼賦予可執行許可權,然後執行:

[email protected]:~/Documents/bash$ chmod +x helloworld [email protected]:~/Documents/bash$ ./helloworld Hello, world!

Perl指令碼中的代碼都不是shell命令;它們是Perl代碼。bash 可以讓使用者把一系列命令組合起來,把它叫作指令碼,但是 Perl 和 bash 不一樣。也就是說,Perl提供了許多和 bash 一樣的慣例,如使用撇號來獲得一條命令的輸出結果。

2. 變數和數組

  Perl 有3中基礎資料型別 (Elementary Data Type):標量(也就是說,像數和字串這樣的一元量)、數組和雜湊(hash)。雜湊也叫作關聯陣列。變數的類型總是一目瞭然,因為它體現在變數名上:標量的變數以 $ 開頭,陣列變數以 @ 開頭,而雜湊變數以 % 開頭。

 

Perl學習筆記(1)----入門

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.