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
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
by
Leave a Reply