common/tools/zip_includefiles.pl
author Dario Sestito <darios@symbian.org>
Mon, 13 Jul 2009 17:52:05 +0100
changeset 244 9544c55a7fd0
parent 116 47cccedacd2d
permissions -rw-r--r--
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);
	}
}