rm -f /tmp/FixList /tmp/AsciiHdr
echo SSDFA > /tmp/AsciiHdr
find . -name StructureDictionary -print >> /tmp/FixList
for f in `cat /tmp/FixList`
do
	echo "fixing $f"
	if [ ! -f $f.Release-1.1 ]; then
	    mv $f $f.Release-1.1
	fi
	cat /tmp/AsciiHdr $f.Release-1.1 > $f
done
