首页 > 编程语言 >安装guardian报错perl Can't locate getopts.pl in @INC

安装guardian报错perl Can't locate getopts.pl in @INC

时间:2023-02-28 19:33:39浏览次数:59  
标签:locate guardian perl 报错 getopts Getopt pl

在配guardian时遇到的

查看源文件发现是这样一句话

require 'getopts.pl';

可是在程序的文件夹下没有这个脚本,并且运行脚本会报错,因为从perl5.16版本开始,这个功能就集成到包Getopt::Std中了(这个包是perl自带的包),所以我们只需要将脚本添加一句话

use Getopt::Std;

然后将对应的出错的perl脚本中的函数方法Getopt全部改为getopts就可以了,哪里报错改哪里

标签:locate,guardian,perl,报错,getopts,Getopt,pl
From: https://www.cnblogs.com/jasmine-lee/p/17165677.html

相关文章