open(FILE, "<$template") or die "Template : Couldn't open $template : $!\n"; while () { $HTML .= $_ } close(FILE); while ($HTML =~ //) { my $command_output = &{$templateCall->{$1}}; # a subroutine call $HTML =~ s//$command_output/; }