diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-12-31 11:43:09 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-12-31 11:49:55 -0800 |
commit | 8f9bf300174afa9b29027542ec59892f610c08e4 (patch) | |
tree | 349c787e6aec9ae9dc1447936897da5e44320683 /NEWS | |
parent | 26323928d9b045c29c02028bf30823ead0b0be75 (diff) | |
download | coreutils-8f9bf300174afa9b29027542ec59892f610c08e4.tar.xz |
dd: summarize in --human-readable format too
Problem reported by Linda Walsh in: http://bugs.gnu.org/17505
* NEWS: Document this.
* doc/coreutils.texi (dd invocation): Use a simpler script.
Adjust output example to match new behavior.
* src/dd.c (human_size): Remove.
All uses changed to use human_readable and ...
(human_opts): ... this new constant.
(abbreviation_lacks_prefix): New function.
(print_xfer_stats): Use it. Output both --si and --human-readable
summaries, but only if they have prefixes.
* tests/dd/reblock.sh, tests/dd/stats.sh: Test new behavior.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ GNU coreutils NEWS -*- outline -*- ** New features + dd now summarizes sizes in --human-readable format too, not just --si. + E.g., "3441325000 bytes (3.4 GB, 3.2 GiB) copied". It omits the summaries + if they would not provide useful information, e.g., "3 bytes copied". + md5sum now supports the --ignore-missing option to allow verifying a subset of files given a larger list of checksums. This also affects sha1sum, sha224sum, sha256sum, sha384sum and sha512sum. |