mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-01 01:29:31 +01:00
25 lines
559 B
Perl
Executable File
25 lines
559 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
use JSON;
|
|
|
|
my $file = 'cat_questions';
|
|
open my $fh, '<', $file or die "$file: $!";
|
|
|
|
my $q = { questions => [] };
|
|
my $id = 0;
|
|
|
|
foreach my $line (<$fh>) {
|
|
chomp $line;
|
|
print STDERR "<$line>\n";
|
|
$id++;
|
|
my ($category, $question, @answers) = split /`/, $line;
|
|
my $answer = shift @answers;
|
|
my $h = { category => $category, question => $question, answer => $answer, alternativeSpellings => \@answers, suggestions => [], id => $id };
|
|
push @{$q->{questions}}, $h;
|
|
}
|
|
|
|
my $json = encode_json $q;
|
|
print "$json\n";
|