rm dir_exist
touch dir_exist
if (test -d $1) then
	echo 1.0 > dir_exist
else
	echo 0.0 > dir_exist
fi
