#! /bin/sh

ISO=iso10646

for i in cedf/*
do
	j=`basename $i`
	if [ ! "$j" = "$ISO" ]
	then
		transiso -b $j $ISO $j
	fi
done

