mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #321] Is it possible to set the unit of measurement to a specified value,like KB? #141
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @TYzzt on GitHub (Apr 3, 2023).
Original GitHub issue: https://github.com/bootandy/dust/issues/321
When the size of storage is large, the accuracy loses the angle
@TYzzt commented on GitHub (Apr 10, 2023):
https://github.com/bootandy/dust/pull/322
@bootandy commented on GitHub (May 5, 2023):
I'm not particularly keen on adding this flag. What is the usecase for it?
If you need to know the exact size of a file you can use du for that.
dust is going to ignore several files anyway with its targetted summary so I'm not sure what value this adds.
@TYzzt commented on GitHub (May 6, 2023):
Fast and relatively accurate estimation of storage usage in HPC distributed storage scenarios
@bootandy commented on GitHub (May 7, 2023):
Hmm, maybe, let me sleep on it.
@sergeevabc commented on GitHub (Feb 18, 2024):
How do I get the size in bytes? When I share files, I prefer to specify the size in bytes so that people don't get confused (KB, KiB, etc). In addition, one can later process the output in bytes by other programs, such as awk, and convert it to the desired units.
@cgkantidis commented on GitHub (Feb 19, 2024):
Please add a
--formatoption, to specify the output's size format.I want to parse the output from another script (in Python in my case) to merge it with other reports.
I prefer to call
dustin a subprocess, and parse its output, because it's much faster than a native-Python solution.But I don't want to turn my Python script which merges reports to Rust, because it would be too much work and it's already fast enough.
Any chance to implement that?
duaoffers this option:@bootandy commented on GitHub (Feb 19, 2024):
Ok, clearly people want this. I'll look into it.
@bootandy commented on GitHub (Feb 22, 2024):
We could merge the --format flag with the --iso flag. - they seem to do similar things.
@nda-cunh commented on GitHub (Mar 14, 2024):
I also need this feature. currently i'm forced to use du which is extremely slow and slows down an important script. i wanted to replace it with dust but it forces the -h (human readable). a --format or the inverse of a -h even if it's not precise would be great! thank !
@bootandy commented on GitHub (Mar 15, 2024):
https://github.com/bootandy/dust/pull/373
it's merged it'll be in the next release.
@sergeevabc commented on GitHub (Apr 16, 2024):
@bootandy, every time I run dust.exe on Windows 7 x64 the first thing that appears on the screen is the following line: “This version of Windows does not support ANSI colors”. Not sure why it happens, since, for example, ripgrep and bat render colors fine. Anyway, I don't want to feel second-rate here.
@bootandy commented on GitHub (Apr 17, 2024):
I don't have a windows box. - Does dust go on to print with colors or not ?
Does this happen with all versions ?
@sergeevabc commented on GitHub (May 13, 2024):