$ cat temp.tt
[% PERL %]
[ print "Hello!!";]
[% END %]
This is Example of using perl with HTML
$ tpage temp.tt
perl error - EVAL_PERL not set
$ tpage --eval_perl temp.tt
undef error - syntax error at (eval 11) line 3, at EOF
$ cat temp.tt
[% PERL %]
print "Hello!!";
[% END %]
This is Example of using perl with HTML
$ tpage --eval_perl temp.tt
Hello!!
This is Example of using perl with HTML
$