To find all the symlinks
We can send these results to ls -l to see the links
Code:
find / -type l -exec ls -l {} \;
Since this will probably have access errors, send them to /dev/null
Code:
find / -type l -exec ls -l {} \; 2> /dev/null
But you don't want to find all of them (there's a ton of links for devices and such), you probably just want them in a specific directory, so replace `/` with the path you want to search (i.e. `/etc/` or `/home/user/`)