1OD(1) General Commands Manual OD(1)
2
3
4
6 od - octal dump
7
9 od [ -bcdox ] [ file ] [ [ + ]offset[ . ][ b ] ]
10
12 Od dumps file in one or more formats as selected by the first argument.
13 If the first argument is missing, -o is default. The meanings of the
14 format argument characters are:
15
16 b Interpret bytes in octal.
17
18 c Interpret bytes in ASCII. Certain non-graphic characters appear as
19 C escapes: null=\0, backspace=\b, formfeed=\f, newline=\n,
20 return=\r, tab=\t; others appear as 3-digit octal numbers.
21
22 d Interpret words in decimal.
23
24 o Interpret words in octal.
25
26 x Interpret words in hex.
27
28 The file argument specifies which file is to be dumped. If no file
29 argument is specified, the standard input is used.
30
31 The offset argument specifies the offset in the file where dumping is
32 to commence. This argument is normally interpreted as octal bytes. If
33 `.' is appended, the offset is interpreted in decimal. If `b' is
34 appended, the offset is interpreted in blocks of 512 bytes. If the
35 file argument is omitted, the offset argument must be preceded `+'.
36
37 Dumping continues until end-of-file.
38
40 adb(1)
41
42
43
44 OD(1)