回答:
はい、引数-iは、lsコマンドがリストしている各ファイルまたはディレクトリのiノード番号を出力します。ディレクトリのiノード番号を出力したいので、引数-dを使用してディレクトリのみをリストすることをお勧めします。iノード番号をディレクトリ/ 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