8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From the documentation at https://www.gnu.org/software/coreutils/manual/html_node/df-invocation.html:
‘-B size’ ‘--block-size=size’ Scale sizes by size before printing them (see Block size). For example, -BG prints sizes in units of 1,073,741,824 bytes.
‘-B size’ ‘--block-size=size’
Scale sizes by size before printing them (see Block size). For example, -BG prints sizes in units of 1,073,741,824 bytes.
GNU df:
$ df --block-size 1 /dev Filesystem 1B-blocks Used Available Use% Mounted on udev 3950620672 0 3950620672 0% /dev jeffrey@vonneumann:~/src/coreutils$ df --block-size 2 /dev Filesystem 2B-blocks Used Available Use% Mounted on udev 1975310336 0 1975310336 0% /dev jeffrey@vonneumann:~/src/coreutils$ df --block-size 3 /dev Filesystem 3B-blocks Used Available Use% Mounted on udev 1316873558 0 1316873558 0% /dev
uutils df:
$ ./target/debug/df --block-size 1 /dev Filesystem 1k-blocks Used Available Use% Mounted on udev 3950620672 0 3950620672 0% /dev $ ./target/debug/df --block-size 2 /dev Filesystem 1k-blocks Used Available Use% Mounted on udev 3950620672 0 3950620672 0% /dev $ ./target/debug/df --block-size 4 /dev Filesystem 1k-blocks Used Available Use% Mounted on udev 3950620672 0 3950620672 0% /dev
Relates to #3058.
The text was updated successfully, but these errors were encountered:
df
--block-size
I believe this is now fixed.
Sorry, something went wrong.
No branches or pull requests
From the documentation at https://www.gnu.org/software/coreutils/manual/html_node/df-invocation.html:
GNU df:
uutils df:
Relates to #3058.
The text was updated successfully, but these errors were encountered: