summaryrefslogtreecommitdiffstats
path: root/bin/generate_spreadsheet
blob: cc5df124947383bc6b374f01692649780a04fbfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
use strict;
use warnings;

use Spreadsheet::Template;

my $template = Spreadsheet::Template->new;
my $in = do { local $/; <> };
my $out = $template->render($in);
open my $fh, '>', 'out.xlsx';
binmode $fh;
$fh->print($out);
$fh->close;