‘-B size’
‘--block-size=size’
Scale sizes by size before printing them (see [Block size](https://www.gnu.org/software/coreutils/manual/html_node/Block-size.html)). For example, -BG prints sizes in units of 1,073,741,824 bytes.
‘-b’
‘--bytes’
Equivalent to --apparent-size --block-size=1.
The -b option also apply --apparent-size, so there is currently no way to display bytes without also enable --apparent-size.
It would be nice to be able to do this:
du -s -B 1 -- folder_name
Upstream BusyBox is currently a bit silent, I wonder if this can be added directly in BusyBox for Windows.
From du manual:
The
-b
option also apply--apparent-size
, so there is currently no way to display bytes without also enable--apparent-size
. It would be nice to be able to do this:du -s -B 1 -- folder_name
Upstream BusyBox is currently a bit silent, I wonder if this can be added directly in BusyBox for Windows.