blob: 275866ef7f68594dcd01039463ad2de2fa2b0a48 [file] [log] [blame]
Nils Diewald37e5b572013-11-20 20:26:03 +00001#!/usr/bin/env perl
2use strict;
3use warnings;
4use FindBin;
5use v5.16;
6
7my $dir = $FindBin::Bin;
8
9foreach my $file (qw/00001 00002 00003 00004 00005 00006 02439/) {
10 my $call = 'perl ' . $dir . '/prepare_index.pl -i ' . $dir . '/../examples/WPD/AAA/' . $file . ' -o ' . $dir . '/../' . $file . '.json';
11 print 'Create ' . $file . ".json\n";
12 system($call);
13
14 print 'Create ' . $file . ".json.gz\n";
15 $call .= '.gz -z';
16 system($call);
17};