如何在Linux中比较二进制文件的前N个字节

发布于 2024-11-11 16:33:04 字数 295 浏览 4 评论 0原文

我有两个不同大小的二进制文件。我需要在 Linux 中比较这些文件的前 N ​​个字节。我期望结果是“是”(相同)或“否”(不相同),而不是逐字节比较。 N 可能从 KB 到 GB 不同。

目前我正在使用以下方法:

head -c N input1.dat | rdiff signature >1.sig
head -c N input2.dat | rdiff signature >2.sig
diff 1.sig 2.sig

但我想知道是否还有另一种更简单的方法。 谢谢。

I have two binary files with different sizes. I need to compare first N bytes of these files in Linux. I expect that the result is either "yes" (the same) or "no" (not the same), not byte-to-byte comparing. The N may vary from KBs to GBs.

Currently I'm using the following approach:

head -c N input1.dat | rdiff signature >1.sig
head -c N input2.dat | rdiff signature >2.sig
diff 1.sig 2.sig

But I'm wondering if there is another approach, more simple.
Thanks.

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

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

发布评论

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

评论(1

不奢求什么 2024-11-18 16:33:04

尝试 cmp

cmp -n <bytes> file1 file2

从手册页来看:如果输入相同,则退出状态为 0,如果不同,则退出状态为 1,如果出现问题,则退出状态为 2。

Try cmp:

cmp -n <bytes> file1 file2

From the man page: exit status is 0 if inputs are the same, 1 if different, 2 if trouble.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文