summaryrefslogblamecommitdiffstats
path: root/tools/ArtChecker/summaryall.pl
blob: e69e1314c1251fa77aaabd414a3c54c504a3fb61 (plain) (tree)






















                                                                                 
#!/usr/bin/perl

$filename=@ARGV[0];

############################################################################## 
#	MAIN
##############################################################################

#open file
open(FILE_HANDLE,$filename) || die "Could not open file ERROR: $filename!";


#while not EOF and read in string
while (<FILE_HANDLE>)
{
	$string = $_;
	chop($string);
	#print $string;	
	@todo =("artchecker ",$string);
	system (@todo) # == 0 or  die "Failed to Execute Artchecker Command !\n";
}

close(FILE_HANDLE);