Raptor parser to provide summary csv file so that faults can be readily put into db
#!perl -w
use strict;
my @includefiles = glob "*_includefile.txt";
foreach (@includefiles)
{
my $includefilename=$_;
if (m/(.*)(_includefile.txt)/) {
my $zipfilename = $1.".zip";
system("7za a -tzip -i@".$includefilename . " " .$zipfilename);
}
}