mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #267] Add option to not limit number of lines in the report #116
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 @cgkantidis on GitHub (Sep 30, 2022).
Original GitHub issue: https://github.com/bootandy/dust/issues/267
Example usage:
dust --depth 1 --number-of-lines -1I want for example to get the size of each direct subdirectory (--depth 1), but not limit the number of lines reported.
Not sure if passing
-1to the--number-of-linesoption is the best course, or if adding a new option would be preferable, but it would be a nice functionality we're missing now.For now I resort to using
--number-of-lines 1000000@bootandy commented on GitHub (Oct 1, 2022):
just don't use number-of-lines.
dust --depth 1should work.@kiyoon commented on GitHub (Jun 16, 2025):
Is there a way to show all files except for doing
-d 99999999?Currently I'm using
so it will print only the directories with more than 1000 files