Find Symbolic Links in *nix

Find all symbolic links on a linux OS:

find / -type l -exec ls -l {} \;

Or if you want to output it to a file:

find / -type l -exec ls -l {} \; > /home/admin/symbolic_link_list.txt

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *