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.
我想比较两个文件夹(它们都有相同的 zip 文件)。我想确保它们完全相同。我怎样才能做到这一点?
我倾向于对目录进行查找,对该目录中的每个文件执行校验和。我对输出进行排序,然后对排序后的输出进行最终校验和。如果每个目录的最终校验和相同,我认为可以安全地假设它们相同。
我使用的命令是
find _dir_ -type f -exec cksum {} \; | sort | cksum
希望这可以帮助。