common/tools/zip_includefiles.pl
author tathagatar
Thu, 30 Jul 2009 15:23:49 +0100
changeset 290 2168508ed165
parent 116 47cccedacd2d
permissions -rw-r--r--
changing "sf.spec.test.host.name" to "v800005" as ats server.

#!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);
	}
}