#!/bin/sh

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

cd cedf ; for i in *
do
	if [ ! "$i" = "iso10646" ]
	then
		checkiso>>$TRANS/error.log $i
	fi
done

