VM: simplify slab allocator
[minix.git] / man / man1 / od.1
blob6601ab74054b7c1d2da73afa88003d98901bb28f
1 .TH OD 1
2 .SH NAME
3 od \- octal dump
4 .SH SYNOPSIS
5 \fBod\fR [\fB\-bcdhox\fR]\fR [\fIfile\fR] [ [\fB+\fR] \fIoffset\fR [\fB.\fR][\fBb\fR]\fR ]\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-b
20 # Dump bytes in octal
21 .TP 5
22 .B \-c
23 # Dump bytes as ASCII characters
24 .TP 5
25 .B \-d
26 # Dump words in decimal
27 .TP 5
28 .B \-h
29 # Print addresses in hex (default is octal)
30 .TP 5
31 .B \-o
32 # Dump words in octal (default)
33 .TP 5
34 .B \-v
35 # Verbose (list duplicate lines)
36 .TP 5
37 .B \-x
38 # Dump words in hex
39 .SH EXAMPLES
40 .TP 20
41 .B od \-ox file
42 # Dump \fIfile\fP in octal and hex
43 .TP 20
44 .B od \-d file +1000
45 # Dump \fIfile\fP starting at byte 01000
46 .TP 20
47 .B od \-c file +10.b
48 # Dump \fIfile\fP starting at block 10
49 .SH DESCRIPTION
50 .PP
51 .I Od
52 dumps a file in one or more formats.
53 If \fIfile\fP is missing, \fIstdin\fR is dumped.
54 The \fIoffset\fP argument tells
55 .I od
56 to skip a certain number of bytes or blocks before starting.
57 The offset is in octal bytes, unless it is followed by a 
58 \&'.\&' for decimal or \fBb\fP for blocks or both.