in reply to Finding Hard links
Basically "hard link files" are not different files, there is just one file, and the other file names point to the same file. So, your problem is not finding "the files" but finding the names.
This may be a little tricky, and here's why:
The tricky part is that there may be hard links that your user can't access (directory/file permissions etc.)
I don't know if there is a CPAN module for this, but using File::Find and stat you could create one yourself ;-)
|
---|