# this is still slightly wrong, better to write in C
for A
do
	F="`echo $A`"
	if [ ! "$F" = "$A" ]
	then
		echo "$F"
	fi
done
