tt是一个perl模块,一个出色的模版引擎
perl -MCPAN -e shell
install Template
use Template;
my $tt = Template->new(
{
INCLUDE_PATH => '/home/sma/cgi-bin/Tmpl',
INTERPOLATE => 1,
}) || die "$Template::ERROR\n";
my $vars = {
name => 'Wayne',
email => 'prosmarter@163',
deadline => 'the next chorus',
};
$tt->process('hi.html', $vars) || die $tt->error(), "\n";