what="$1"
if [ -L "$what" ]; then
	N=`readlink "$what"`
	rm "$what"
	ln -s "$N" "$what"
else
	touch "$what"
fi
