将perl 任务模块中的以下哈希值视为
package taskmoduleName;
use vars qw( %hash);
%hash = (
'x1' => { 'fruits' => {
'candiedfruit' => {
'sugarcoated' => {
'fruitname1' => 'grapes', }, },
'chocolatecoated' {
'fruitname2' => 'cherries', }, },},
'vegetables' => {
'fried' => {
'salted' => {
'veg1' => 'banana', }, }, },
'x2' => { 'xyz' =>
'xyz1 => 'hhh', },}, );
如何通过外部 perl 文件对其进行操作,将新的键值对添加到原始哈希中我想要的任何位置?
PS我不想修改原始文件中的任何其他内容,除了添加新条目