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

在配guardian时遇到的

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

require 'getopts.pl';

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

use Getopt::Std;

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

posted @ 2023-02-28 19:24  Sylvia_lee  阅读(120)  评论(0编辑  收藏  举报