See attached.
>From deeccb699c97a44ff3159a130422dffdac0b60c3 Mon Sep 17 00:00:00 2001
From: Greg Reagle <[email protected]>
Date: Tue, 3 Nov 2015 10:05:26 -0500
Subject: [PATCH] od: document skip (-j) option
---
od.1 | 4 ++++
od.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/od.1 b/od.1
index e4c2b09..e7291ae 100644
--- a/od.1
+++ b/od.1
@@ -33,6 +33,10 @@ Force Little Endian
or Big Endian
.Fl ( E )
system-independently.
+.It Fl j Ar skip
+Ignore the first
+.Ar skip
+bytes of input.
.It Fl t Ar outputformat
.Ar outputformat
is a list of a|c|d|o|u|x followed by a digit or C|S|I|L and sets
diff --git a/od.c b/od.c
index 67356e3..69a0f0c 100644
--- a/od.c
+++ b/od.c
@@ -177,7 +177,7 @@ static void
usage(void)
{
eprintf("usage: %s [-A addressformat] [-E | -e] [-t outputformat] "
- "[-v] [file ...]\n", argv0);
+ "[-j skip] [-v] [file ...]\n", argv0);
}
int
--
1.9.1