Câu trả lời:
Có, đối số -i sẽ in số inode của mỗi tệp hoặc thư mục mà lệnh ls đang liệt kê. Khi bạn muốn in số inode của một thư mục, tôi sẽ đề nghị sử dụng đối số -d để chỉ liệt kê các thư mục. Để in số inode thư mục / path / to / dir, sử dụng dòng lệnh sau:
ls -id /path/to/dir
Từ man ls
:
-d, --directory
list directory entries instead of contents, and do not derefer‐
ence symbolic links
-i, --inode
print the index number of each file
Điều này cũng hoạt động với stat:
DIR=/
stat -c '%i' $DIR
Từ man stat
:
-c --format=FORMAT
use the specified FORMAT instead of the default; output a new‐
line after each use of FORMAT
[...]
The valid format sequences for files:
%i inode number
stat -f '%i' $DIR
phải được sử dụng.