mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
Fix -b flag
Fixes #1295 , making -b act like `du --block-size=1 --apparent-size`, the reason it uses `stat.size` instead of `stat.nlink * stat.size` is explained in #1292 and the fix for that issue #1294 is mirrored by the use of `stat.size` here.
This commit is contained in:
parent
a161b7e803
commit
4a0f3b31ab
1 changed files with 9 additions and 1 deletions
10
src/du/du.rs
10
src/du/du.rs
|
@ -219,6 +219,10 @@ fn convert_size_human(size: u64, multiplier: u64, _block_size: u64) -> String {
|
|||
format!("{}B", size)
|
||||
}
|
||||
|
||||
fn convert_size_b(size: u64, _multiplier: u64, _block_size: u64) -> String {
|
||||
format!("{}", ((size as f64) / ((1) as f64)).ceil())
|
||||
}
|
||||
|
||||
fn convert_size_k(size: u64, multiplier: u64, _block_size: u64) -> String {
|
||||
format!("{}", ((size as f64) / (multiplier as f64)).ceil())
|
||||
}
|
||||
|
@ -339,7 +343,9 @@ pub fn uumain(args: Vec<String>) -> i32 {
|
|||
};
|
||||
let convert_size_fn = {
|
||||
if matches.opt_present("human-readable") || matches.opt_present("si") {
|
||||
convert_size_human
|
||||
convert_size_human
|
||||
} else if matches.opt_present("b") {
|
||||
convert_size_b
|
||||
} else if matches.opt_present("k") {
|
||||
convert_size_k
|
||||
} else if matches.opt_present("m") {
|
||||
|
@ -389,6 +395,8 @@ Try '{} --help' for more information.",
|
|||
for (index, stat) in iter.enumerate() {
|
||||
let size = if matches.opt_present("apparent-size") {
|
||||
stat.nlink * stat.size
|
||||
} else if matches.opt_present("b") {
|
||||
stat.size
|
||||
} else {
|
||||
// C's stat is such that each block is assume to be 512 bytes
|
||||
// See: http://linux.die.net/man/2/stat
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue