Perlのバージョン

バージョンの確認方法

コマンドプロンプトからならば、perl.exeにvオプションを渡して実行することでバージョンを確認できます。

C:\>perl -v

This is perl 5, version 14, subversion 2 (v5.14.2) built for MSWin32-x64-multi-thread
(with 1 registered patch, see perl -V for more detail)

Copyright 1987-2011, Larry Wall

Binary build 1402 [295342] provided by ActiveState http://www.ActiveState.com
Built Oct  7 2011 15:19:36

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.

サーバ上などでシェルを実行できない場合には、同様の処理をスクリプトで実行します。

#!/usr/bin/perl -v

このとき#!/usr/bin/の末尾には改行が必要となります。さもなくば、

C:/www/sample.pl is not executable; ensure interpreted scripts have "#!" or "'!" first line
(9)Bad file descriptor: don't know how to spawn child process: C:/www/sample.pl

として、エラーとなります。

Perl 5

 

Perl 6

バージョン履歴

Perlの情報サイトから、まとめて検索