由于先前的问题,我需要单独运行每个 BugZilla 错误并选择保存更改按钮。由于存在超过 8000 个错误,因此无法手动执行此操作。我认为 Perl 模块 WWW::Bugzilla 将让我通过连接到 bugzilla API 来完成这项工作。
use strict;
use warnings;
use WWW:Bugzilla;
my $bz = WWW::Bugzilla->new( server => 'http://be-qa-01/',
email => 'test.email@test.com',
password => 'pass'
bug_number => 8333 );
# show me the chosen component
my $component = $bz->component;
我不知道该怎么做,如果有任何帮助,我将不胜感激。