summaryrefslogtreecommitdiff
path: root/static/v10/man1/od.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 21:07:28 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 21:07:28 -0400
commit711594636704defae873be1a355a292505585afd (patch)
tree59ee13f863830d8beba6cfd02bbe813dd486c26f /static/v10/man1/od.1
parent3258a063c1f189d7b019e40e525b46bef9b9a7b1 (diff)
docs: Added UNIX V10 Manuals
Diffstat (limited to 'static/v10/man1/od.1')
-rw-r--r--static/v10/man1/od.174
1 files changed, 74 insertions, 0 deletions
diff --git a/static/v10/man1/od.1 b/static/v10/man1/od.1
new file mode 100644
index 00000000..114143ee
--- /dev/null
+++ b/static/v10/man1/od.1
@@ -0,0 +1,74 @@
+.pa 1
+.he 'OD (I)'1/15/73'OD (I)'
+.ti 0
+NAME od -- octal dump
+.sp
+.ti 0
+SYNOPSIS od__ [ -abcdho_______ ] [ file ] [ [+_]offset[._][b_] ]
+.sp
+.ti 0
+DESCRIPTION od__
+dumps
+file____
+in
+one or more formats
+as
+selected by the first argument.
+(If the first argument is missing, -o__ is default.)
+The meanings of the format argument characters
+are:
+
+.in +5
+.ti -2
+a_ interprets words as PDP-11 instructions and
+dis-assembles the operation code.
+Unknown operation codes print as ???.
+
+.ti -2
+b_ interprets bytes in octal.
+
+.ti -2
+c_ interprets bytes in ascii.
+Unknown ascii characters are printed as \\?.
+
+.ti -2
+d_ interprets words in decimal.
+
+.ti -2
+h_ interprets words in hex.
+
+.ti -2
+o_ interprets words in octal.
+
+.in -5
+The file argument specifies which file is to be dumped.
+If no file argument is specified,
+the standard input is used.
+Thus od can be used as a filter.
+
+The offset argument specifies the offset
+in the file where dumping is to commence.
+This argument is normally interpreted
+as octal bytes.
+If '.' is appended, the offset is interpreted in
+decimal.
+If 'b' is appended, the offset is interpreted in blocks.
+(A block is 512 bytes.)
+If the file argument is omitted,
+the offset argument must be preceded by '+'.
+
+Dumping continues until an end-of-file
+condition or until
+halted by sending an interrupt signal.
+.sp
+.ti 0
+FILES --
+.sp
+.ti 0
+SEE ALSO db(I)
+.sp
+.ti 0
+DIAGNOSTICS --
+.sp
+.ti 0
+BUGS --