Wednesday, September 13, 2006
[Perl] 펄 버전/빌드 넘버 보기, 펄 도움말 보기 - View Perl Version
펄 버전 보기 옵션
perl -v
또는
perl -version
이라고 하면, 현재 컴에 설치된 펄의 버전이 나옵니다. 리눅스에는 펄이 기본적으로 설치되어 있지만, 윈도우에서는 액티브펄(ActivePerl) 등의 펄을 직접 설치해야 합니다.
이 글을 쓰고 있는 지금 현재 펄의 최신 버전은 v5.8.8 이고
빌드는 819 입니다. 올초에는 빌드가 817 이었는데, 지금 최신은 819 더군요.
D:\Z>perl -v
This is perl, v5.8.8 built for MSWin32-x86-multi-thread
(with 33 registered patches, see perl -V for more detail)
Copyright 1987-2006, Larry Wall
Binary build 819 [267479] provided by ActiveState http://www.ActiveState.com
Built Aug 29 2006 12:42:41
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.
D:\Z>
This is perl, v5.8.8 built for MSWin32-x86-multi-thread
(with 33 registered patches, see perl -V for more detail)
Copyright 1987-2006, Larry Wall
Binary build 819 [267479] provided by ActiveState http://www.ActiveState.com
Built Aug 29 2006 12:42:41
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.
D:\Z>
펄의 창시자인 Larry Wall 氏의 이름도 보이는군요.
그리고
perl -V
이렇게, 대문자V로 옵션을 주면, 펄(perl.exe)을 컴파일했을 때의 컴파일러 설정과 적용된 패치들의 목록이 자세히 나옵니다.
펄의 도움말 보기 옵션
펄(perl.exe)의 도움말은
perl -h
또는
perl --help
이렇게 하면 나옵니다.
tag: perl
Perl | 펄
<< Home