The find command can be used to find a list of symbolic links.
find /dir -type l -exec ls -l {} \;
The command above will find all symbolic links within “/dir” and perform an “ls -l” using the exec option.
The find command can be used to find a list of symbolic links.
find /dir -type l -exec ls -l {} \;
The command above will find all symbolic links within “/dir” and perform an “ls -l” using the exec option.
Copyright © 2025 | WordPress Theme by MH Themes
Leave a Reply
You must be logged in to post a comment.