HOWTO: Use the find command to list symbolic links to a target

The following will list all the symbolic links pointing to a file within the same directory.

find /my/dir -lname my_linked_dir -maxdepth 1

You could search the whole but it could take some time:

find / -lname my_linked_dir