in reply to Re^2: lost in eval and regexp
in thread lost in eval and regexp

What about "upload,unzip,run"? Templating systems are usually Pure Perl, so there's no installation requirement other than having the files handy.

You may need the following at the top of your script in order to tell Perl where to look for the modules. Note that only core modules are used.

use File::Spec::Functions qw( rel2abs ); use File::Basename qw( dirname ); use lib dirname(rel2abs($0));