hexdump -n40 filename
如果您使用Posix标准od,则需要大写N.您可能会发现以下调用很有用:
od -N40 -w40 -tx1 -Ax filename
(您也可以使用hexdump来实现,但格式字符串更多的工作要弄清楚:)).