in reply to Re: Re: Re: Text::Template=>How to fill in with more than one time?
in thread Text::Template=>How to fill in with more than one time?

Instead of:
%keepvars = (%keepvars, %vars2);
You could also do this:
@keepvars{keys %vars2} = values %vars2;