답변:
예, -i 인수는 ls 명령이 나열하는 각 파일 또는 디렉토리의 inode 번호를 인쇄합니다. 디렉토리의 inode 번호를 인쇄하려면 -d 인수를 사용하여 디렉토리 만 나열하는 것이 좋습니다. inode 번호를 디렉토리 / path / to / dir로 인쇄하려면 다음 명령 줄을 사용하십시오.
ls -id /path/to/dir
보낸 사람 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
이것은 stat 와도 작동합니다.
DIR=/
stat -c '%i' $DIR
보낸 사람 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