Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
任何合理的 *nix 机器上的工具都是:
file
head
tail
The tools on any reasonable *nix box are:
您可以使用 xxd:
xxd -l 10 your-file
这会显示 您的- 的前 10 个八位字节文件
您的- 的前 10 个八位字节文件
You could use xxd:
This displays the first 10 octets of your-file
your-file
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
任何合理的 *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.您可以使用 xxd:
这会显示
您的- 的前 10 个八位字节文件
You could use xxd:
This displays the first 10 octets of
your-file