#!/bin/sh

if [ "$TRANS" = "" ]
then
	TRANS=../
fi

if [ -f "$TRANS"error.log ]
then
	rm "$TRANS"error.log
fi

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

