我说100个自定义软件包,如(file1.pm,file2.pm,file3.pm,file4.pm,file5.pm,file6.pm)
每个文件都包含一个函数。
我想在我的每个简单的perl脚本中导入所有内容。 如何以简单的方式导入它们。请以最简单的方式提出建议?
答案 0 :(得分:2)
您可以使用这个小脚本将所有100个模块加载到其中:
# pragma
use strict;
use warnings;
# standard modules needed by the script
use Module::Load;
# the loop below loads all 100 of your custom modules (file1.pm, file2.pm, ...)
foreach my $i (1 .. 100)
{
load "file$i";
}
答案 1 :(得分:0)
正如我在评论中所说,我认为这是组织代码库的一种可怕方式。但假设您无法做任何事情,您可能需要查看Toolkit模块。