You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4.1 KiB

od

说明

od命令 用于输出文件的八进制、十六进制或其它格式编码的字节,通常用于显示或查看文件中不能直接显示在终端的字符

常见的文件为文本文件和二进制文件。此命令主要用来查看保存在二进制文件中的值。比如,程序可能输出大量的数据记录,每个数据是 一个单精度浮点数。这些数据记录存放在一个文件中如果想查看下这个数据这时候od命令就派上用场了。在我看来od命令主要用来 格式化输出文件数据即对文件中数据进行无二义性的解释。不管是IEEE754格式浮点数还是ASCII码od命令都能按照需求输出它们的值

选项

用法od [选项]... [文件]...
 od [-abcdfilosx]... [文件] [[+]偏移量[.][b]]
 od --traditional [选项]... [文件] [[+]偏移量[.][b] [+][标签][.][b]]

将指定文件以八进制形式(默认)转储到标准输出。如果指定了多于一个的文件参数,程序会自动将输入的内容整合为列表并以同样的形式
输出。如果没有指定文件,或指定文件为"-",程序从标准输入读取数据

-A, --address-radix=RADIX   output format for file offsets; RADIX is one of [doxn], for Decimal, Octal, Hex or None
-j, --skip-bytes=BYTES      skip BYTES input bytes first
-N, --read-bytes=BYTES      limit dump to BYTES input bytes
-S BYTES, --strings[=BYTES]  output strings of at least BYTES graphic chars;3 is implied when BYTES is not specified
-t, --format=TYPE           select output format or formats
-v, --output-duplicates     do not use * to mark line suppression
-w[BYTES], --width[=BYTES]  output BYTES bytes per output line;32 is implied when BYTES is not specified
           --traditional           accept arguments in third form above

-a   same as -t a,  select named characters, ignoring high-order bit
-b   same as -t o1, select octal bytes
-c   same as -t c,  select printable characters or backslash escapes
-d   same as -t u2, select unsigned decimal 2-byte units
-f	即 -t fF指定浮点数对照输出格式
-i	即 -t dl指定十进制整数对照输出格式
-l	即 -t dL指定十进制长整数对照输出格式
-o	即 -t o2指定双字节单位八进制数的对照输出格式
-s	即 -t d2指定双字节单位十进制数的对照输出格式
-x	即 -t x2指定双字节单位十六进制数的对照输出格式

a          named character, ignoring high-order bit
c          printable character or backslash escape
d[尺寸]	有符号十进制数,每个整形数占指定尺寸的字节
f[尺寸]	浮点数,每个整形数占指定尺寸的字节
o[尺寸]	八进制数,每个整形数占指定尺寸的字节
u[尺寸]	无符号十进制数,每个整形数占指定尺寸的字节
x[尺寸]	十六进制数,每个整形数占指定尺寸的字节

SIZE is a number.  For TYPE in [doux], SIZE may also be C for
sizeof(char), S for sizeof(short), I for sizeof(int) or L for
sizeof(long).  If TYPE is f, SIZE may also be F for sizeof(float), D
for sizeof(double) or L for sizeof(long double).

Adding a z suffix to any type displays printable characters at the end of
each output line.

BYTES is hex with 0x or 0X prefix, and may have a multiplier suffix:
  b    512
  KB   1000
  K    1024
  MB   1000*1000
  M    1024*1024
and so on for G, T, P, E, Z, Y.

实例

od -b file  # 说明:使用单字节八进制解释进行输出,注意左侧的默认地址格式为八字节
od -c file  # 说明使用ASCII码进行输出注意其中包括转义字符
od -t d1 file   # 说明:使用单字节十进制进行解释
od -A d -c file # 说明:设置地址格式为十进制
od -A x -c file # 说明:设置地址格式为十六进制
od -j 2 -c file # 说明:跳过开始的两个字节
od -N 2 -j 2 -c file    # 说明:跳过开始的两个字节,并且仅输出两个字节
od -w1 -c file  # 说明每行仅输出1个字节
od -w2 -c file  # 说明:每行输出两个字节
od -w3 -b file  # 说明每行输出3个字节并使用八进制单字节进行解释