You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For block sizes that are not divisible by 1024, the column header of the "size" column in the table produced by df does not match GNU. (For block sizes divisible by 1024, see pull request #3191.) For example,
GNU df:
$ df --block-size=1234 | head -n1
Filesystem 1.3kB-blocks Used Available Use% Mounted on
uutils df:
$ ./target/debug/df --block-size=1234 | head -n1
Filesystem 1k-blocks Used Available Use% Mounted on
(For this issue, let's ignore the differences in whitespace.) GNU df produces "1.3kB-blocks", uutils df produces "1k-blocks".
The output format seems similar to that of numfmt:
$ numfmt --to=si 1234
1.3K
The text was updated successfully, but these errors were encountered:
For block sizes that are not divisible by 1024, the column header of the "size" column in the table produced by
df
does not match GNU. (For block sizes divisible by 1024, see pull request #3191.) For example,GNU df:
uutils df:
(For this issue, let's ignore the differences in whitespace.) GNU df produces "1.3kB-blocks", uutils df produces "1k-blocks".
The output format seems similar to that of numfmt:
The text was updated successfully, but these errors were encountered: