commit | 8395bd3f52f8ed46fa3ffc316b2d113afa748bae | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Mon Aug 19 10:30:55 2013 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Mon Aug 19 10:30:55 2013 +0200 |
tree | 934074bdbfa62fb8416773d1fe196fd1f194684e | |
parent | b941316ae5313be523b64f0a9151ee4decb2b35b [diff] |
dd: fix example in a comment. No code changes. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/coreutils/dd.c b/coreutils/dd.c index 1732a5c..d6aa5ef 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c
@@ -382,7 +382,7 @@ } if (flags & FLAG_SWAB) { /* If n is odd, last byte is not swapped: - * echo -n "qwe" | dd conv=swab bs=1 + * echo -n "qwe" | dd conv=swab * prints "wqe". * The code does not handle correctly odd-sized reads * in the *middle* of the input. FIXME.