On Thu 07 Sep 2017 at 16:13:37 (-0700), James H. H. Lampert wrote: > If I remember right, Linux file systems can have not only symbolic > links to files, but also multiple hard links to the same file. Is > there an easy way to look for something like that?
find <top-of-the-tree> -type f ! -links 1 -exec ls -l {} \; | less Cheers, David.