如何计算 Ntfs 卷上的硬链接、符号链接和连接

如何计算 Ntfs 卷上的硬链接、符号链接和连接

我知道有些程序声称可以计算其中一个,但我不知道有任何程序可以计算所有三个。我想计算所有三个并打印出一个列表,如下所示:

硬链接:123

符号链接:456

路口:789

是否有一个程序或 Windows 命令可以执行这样的操作?

答案1

如果我在 Windows 中使用 Cygwin,我可以运行以下命令:

find $directory -type l -exec echo symlinks \; -o -type f -links +1 -exec echo hardlinks \; | sort | uniq -c

输出如下:

产生如下输出:

40 个硬链接

164 个符号链接

相关内容