列出 Unix 目录中的重复文件

发布于 2024-10-22 09:51:18 字数 83 浏览 3 评论 0原文

是否有任何 unix 命令可以显示特定目录中的重复文件。请告诉我您的意见。

Is there any unix commands that can display duplicate files in a particular directory.kindly let me know your comments.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尘世孤行 2024-10-29 09:51:18

您应该能够使用 fdupes 来实现此目的。

fdupes ./directory

这应该列出目录中的所有重复文件,您还可以传递 -r 以递归扫描到子目录中。

You should be able to use fdupes to achieve this.

fdupes ./directory

That should list all the duplicate files in a directory, you can also pass it -r for a recursive scan into subdirectories.

夜光 2024-10-29 09:51:18

fdupe 是完成这项工作的绝佳工具。我还推荐 rmlint
对于包含 60 GB 的照片和视频的 Linux 目录 (ext4):

  • rmlint 花了 38 秒来查找重复项并提供不同的清理操作。
  • fdupe 花了 56 秒才找到重复项。

fdupe is a great tool to do the job. I would also recommend rmlint.
For a Linux directory (ext4) of 60 GB of photos and videos:

  • rmlint took 38 seconds to find duplicates and offer different clean up actions.
  • fdupe took 56 seconds to find the duplicates.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文