How could I get the list of all linked files on my system or from a certain directory. I used to create links but they became unmanageable with time. I want the list of all such links from a directory. Can anyone help?
How to find all files which are basically soft or hard links of other directories or files on linux?
|
|
Finding symlinks is easy:
Finding hard links is tricky, because if a subdirectory of the directory in question also has subdirectories then those increase the hard link count. That's how subdirectories are linked to their parents in UNIX (it's the If you only want to find linked files (and not directories), this will work:
This works because a file that does have hard links will have a link count > 1, and unlinked file has a link count == 1, hence this command looks for all files whose link count <> 1 Alternatively, you could use:
This works for the same reason as above; however, find can take +n or -n instead of just a number. This is equivalent to testing for greater than n or less than n, respectively. |
||||
|
|
|
@OP, If you have GNU find, you can find hard links using -printf "%n" eg
|
|||
|
|