Yanıtlar:
Evet, -i argümanı ls komutunun listelediği her dosya veya dizinin inode numarasını yazdıracaktır. Bir dizinin inode numarasını yazdırmak istediğiniz gibi, sadece dizinleri listelemek için -d argümanını kullanmanızı öneririm. İnode numarasını / path / to / dir dizinini yazdırmak için aşağıdaki komut satırını kullanın:
ls -id /path/to/dir
Gönderen 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
Bu durum stat ile de çalışır:
DIR=/
stat -c '%i' $DIR
Gönderen 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