To find files which is symbolic link to other file, you can use -type
option with l
parameter as below:
$ find -type l
It is also possible to combine with other filters:
$ find -type l -name "abc*"
or
$ find -type l -name "abc*" -exec ls -l '{}' \;