When I stat a directory I get a listing that tell me there are 5 links to the directory.
stat dir
My question is how do I get information (names and locations) to all these 5 links?
|
|
|
You just need When you create a directory, its link count starts at 2:
The other thing that increases the directory's link count is its subdirectories: they all have a You can't hardlink directories in Linux, so these are the only things that count towards the link count - two plus number of subdirectories. |
|||
|