查看大文件的标头位置

发布于 2024-10-14 08:48:22 字数 1459 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

—━☆沉默づ 2024-10-21 08:48:22

任何合理的 *nix 机器上的工具都是:

  • file:知道很多神奇的标头并检测文件的类型。
  • head:读取文件的前几行或字节。
  • tail:读取文件的最后几个字节或行;有些文件末尾有元信息。

The tools on any reasonable *nix box are:

  • file: knows a lot of magic headers and detects the type of a file.
  • head: reads first several lines or bytes of a file.
  • tail: reads last several bytes or lines of a file; some files have metainfo at the end.
熟人话多 2024-10-21 08:48:22

您可以使用 xxd

xxd -l 10 your-file

这会显示 您的- 的前 10 个八位字节文件

You could use xxd:

xxd -l 10 your-file

This displays the first 10 octets of your-file

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