

for i in $*
do
	echo "fxparse $i > temp.tmp"
	fxparse $i > temp.tmp
        if test $? -ne 0; then exit 1; fi
        mv temp.tmp $i 
done
