Linuxで動作するスクリプト言語
Windowsなどでは、ActivePerlが有名
$ perl -v
Perlが正しくインストールされていれば、下記のようなバージョン情報が表示されます。
perl -v
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.
CPANはPerlのモジュール管理を簡便にしてくれるツールです。
必要なモジュールをここでインストール指定すると、
各種モジュール間の整合性をとりながら、ダウンロード & コンパイル & インストール を
全て自動で行ってくれます。
$ perl -MCPAN -e shell
Perlのモジュールの何がインストールされているかを確認するためのコマンドです。
find `perl -e 'print "@INC"'` -name '*.pm' -print
これで表示すると、すっごい表示されます。
検索結果をあらかじめファイルなどにリダイレクトすることをお勧めします。