#!/bin/sh

if [ -f error.log ]
then
	rm error.log
fi

for i in tables/*
do
	checkiso>>error.log $i
done
