Fix bug and issue list scripts

The scripts now properly handle quoted CSV values with the help of a Perl
script.
This commit is contained in:
Markus Mäkelä
2017-09-18 22:55:05 +03:00
parent aaa60d37e6
commit e8a9a393ae
3 changed files with 22 additions and 2 deletions

20
Documentation/process.pl Executable file
View File

@ -0,0 +1,20 @@
#!/bin/perl
# Discard the CSV headers
<>;
while (<>)
{
# Replace commas that are inside double quotes
s/("[^"]*),([^"]*")/$1$2/g;
# Replace the double quotes themselves
s/"([^"]*)"/$1/g;
# Split the line and grab the issue number and description
my @parts = split(/,/);
my $issue = @parts[1];
my $desc = @parts[0];
print "* ($issue)[https://jira.mariadb.org/browse/$issue] $desc\n";
}