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