You can try something like this:
Code:
find / -type -l | while read link ; do
readlink ${link} | grep -q testscript && echo ${link}
done
You can substitute "find /" with "find <whereveryouwanttosearch>" and "testscript" with whatever filename the links should point to.
Greetings,
Benjamin