find "$@" -type l |
while read L; do
	T=`readlink -f -n "$L"`
	if [ ! -e "$T" -o -L "$T" ]; then
		echo "$L"
	fi
done
