From bc024e450f214d90e1c2e38fe017e2189ef4181e Mon Sep 17 00:00:00 2001
From: Sven Wiltink <sven@wiltink.dev>
Date: Tue, 30 Sep 2025 14:11:52 +0200
Subject: [PATCH] dd: documented seek_bytes skip_bytes and count_bytes flags

* src/dd.c: Added docs for seek_bytes skip_bytes and count_bytes
---
 src/dd.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/dd.c b/src/dd.c
index 98f360089..addbf70ac 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -632,6 +632,12 @@ Each FLAG symbol may be:\n\
         fputs (_("  binary    use binary I/O for data\n"), stdout);
       if (O_TEXT)
         fputs (_("  text      use text I/O for data\n"), stdout);
+      if (O_SKIP_BYTES)
+        fputs (_("  skip_bytes  count bytes instead of blocks for skip\n"), stdout);
+      if (O_SEEK_BYTES)
+        fputs (_("  seek_bytes  count bytes instead of blocks for seek\n"), stdout);
+      if (O_COUNT_BYTES)
+        fputs (_("  count_bytes count bytes instead of blocks for count\n"), stdout);
 
       {
         printf (_("\
-- 
2.39.5 (Apple Git-154)

