Skip to content
This repository was archived by the owner on Mar 19, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 1003 Bytes

File metadata and controls

36 lines (28 loc) · 1003 Bytes

Day 19

Notes

tree --dirsfirst -L 2 -ad home/haiji

home/haiji
├── .cache
│   └── mc
├── .config
│   └── mc
├── .local
│   └── share
├── .ssh
└── test

ls -ild in home/haiji gives me -

264604 drwxr-xr-x 7 haiji haiji 4096 Oct  1 14:03 .

The number of hard links are 7 for this dir. This is because, all of the below point to the same thing,

  1. home will have the dir haiji
  2. haiji will have a dir .
  3. .cache, .config, .local, .ssh will have a dir ..
  4. test will have a dir ..

Readings