summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-12-21 10:18:58 +0100
committerJim Meyering <jim@meyering.net>2006-12-21 10:18:58 +0100
commitf0ee72aa01382bcd69c1a0e00f7f8fc5de6cd56e (patch)
treeadfb02ee21ecb903fb1b5cd02ebb4fd78c744556
parentc8ef95eaed944ec70ccd70c077cf465c6311c1b6 (diff)
downloadcoreutils-f0ee72aa01382bcd69c1a0e00f7f8fc5de6cd56e.tar.xz
* coreutils.texi (dd invocation): Improve the documentation
for bs, ibs, obs, and cbs. Suggestion from Dan Jacobson. Patch by Olivier Delhomme.
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/coreutils.texi13
2 files changed, 14 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 60341abab..201070dbf 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,9 @@
+2006-12-21 Jim Meyering <jim@meyering.net>
+
+ * coreutils.texi (dd invocation): Improve the documentation
+ for bs, ibs, obs, and cbs. Suggestion from Dan Jacobson.
+ Patch by Olivier Delhomme.
+
2006-12-14 Jim Meyering <jim@meyering.net>
* coreutils.texi: Remove two doubled words.
diff --git a/doc/coreutils.texi b/doc/coreutils.texi
index c7952facc..98bfadb83 100644
--- a/doc/coreutils.texi
+++ b/doc/coreutils.texi
@@ -7155,25 +7155,28 @@ bytes (or the size specified with @samp{seek=}).
@opindex ibs
@cindex block size of input
@cindex input block size
-Read @var{bytes} bytes at a time.
+Set the input block size to @var{bytes}.
+This makes @command{dd} read @var{bytes} per block.
@item obs=@var{bytes}
@opindex obs
@cindex block size of output
@cindex output block size
-Write @var{bytes} bytes at a time.
+Set the output block size to @var{bytes}.
+This makes @command{dd} write @var{bytes} per block.
@item bs=@var{bytes}
@opindex bs
@cindex block size
-Both read and write @var{bytes} bytes at a time. This overrides
-@samp{ibs} and @samp{obs}.
+Set both input and output block sizes to @var{bytes}.
+This makes @command{dd} read and write @var{bytes} per block,
+overriding @samp{ibs} and @samp{obs}.
@item cbs=@var{bytes}
@opindex cbs
@cindex block size of conversion
@cindex conversion block size
-Convert @var{bytes} bytes at a time.
+Set the conversion block size to @var{bytes}.
@item skip=@var{blocks}
@opindex skip