How to list all symbolic link?

how to list all symbolic link can i use find / path -type l

You can try:-

find . -type l

OR

ls -l | grep ^l