Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 unix 命令获取您实际所在的当前文件夹的 ino? 或者是否可以提供一个可能有用的人..
ls -id .
-i告诉 ls 打印 inode 编号,-d表示显示目录,而不是内容。.是当前目录。
-i
-d
.
你也可以使用 unix stat:
stat -c %i .
这只会给你 inode 号。