1
How to make find follow symbolic links?
On linux when I use the “find” command I have notice that it is not following any symbolic links? How can I make it follow them?
On linux when I use the “find” command I have notice that it is not following any symbolic links? How can I make it follow them?
This solution has been deemed correct by the post author
This is easy and as simple as just adding the “-L” flag to your command to follow symbolic links
Example:
find -L /home -iname “*.mp3”