Find all symbolic links on a linux OS:
1 |
find / –type l –exec ls –l {} \; |
Or if you want to output it to a file:
1 |
find / –type l –exec ls –l {} \; > /home/admin/symbolic_link_list.txt |
Find all symbolic links on a linux OS:
1 |
find / –type l –exec ls –l {} \; |
Or if you want to output it to a file:
1 |
find / –type l –exec ls –l {} \; > /home/admin/symbolic_link_list.txt |
by
Leave a Reply