2023-07-27 19:52:04 +00:00
|
|
|
Enhancement: Add `--human-readable` option to `ls` and `find` commands
|
2023-06-02 01:18:18 +00:00
|
|
|
|
2023-07-29 00:30:40 +00:00
|
|
|
Previously, when using the `-l` option with the `ls` and `find` commands, the
|
|
|
|
displayed size was always in bytes, without an option for a more human readable
|
|
|
|
format such as MiB or GiB.
|
2023-06-02 01:18:18 +00:00
|
|
|
|
2023-07-29 00:30:40 +00:00
|
|
|
The new `--human-readable` option will convert longer size values into more
|
|
|
|
human friendly values with an appropriate suffix depending on the output size.
|
|
|
|
For example, a size of `14680064` will be shown as `14.000 MiB`.
|
2023-06-02 01:18:18 +00:00
|
|
|
|
2023-06-02 01:30:51 +00:00
|
|
|
https://github.com/restic/restic/issues/4159
|
2023-06-08 17:12:26 +00:00
|
|
|
https://github.com/restic/restic/pull/4351
|