gpt4 book ai didi

perl - 如何在没有许可证和构建信息的情况下获取 Perl 版本字符串?

转载 作者:行者123 更新时间:2023-12-03 15:07:57 25 4
gpt4 key购买 nike

perl --version打印所有这些:

This is perl 5, version 26, subversion 1 (v5.26.1) built for darwin-thread-multi-2level

Copyright 1987-2017, 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.

我想要的是这个:
5.26.1

是否有任何开箱即用的方法来获得它,或者我是否需要编写自己的正则表达式以从详细输出中提取它?

最佳答案

变量 $^V有那个信息。您可以直接从 Perl 内部打印它:

#!/usr/bin/perl

use strict;
use warnings;

print $^V;

或者你可以在 bash 中得到它:
perl -e 'print $^V'

两个版本都在我的系统上打印“v5.22.1”。

关于perl - 如何在没有许可证和构建信息的情况下获取 Perl 版本字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49500648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com