2 # A really simple template engine
3 # (c) 2004 Martin Mares <mj@ucw.cz>
13 GetOptions('out|o=s' => \$out) or die "Usage: temple [-o <out>] <in> ...";
16 open STDOUT, ">$out" or die "Cannot open $out: $!";
18 if (!@ARGV) { push @ARGV, "-"; }
21 UCW::Temple::parse_file($_);
23 UCW::Temple::finish();