mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #208] How to exclude mount path for separate partitions #96
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 @lcheylus on GitHub (Jan 14, 2022).
Original GitHub issue: https://github.com/bootandy/dust/issues/208
On my BSD system, I have separate partitions for
/usr:/usr/usr/local/usr/X11R6I would like to use
dustto see my disk utilization for/usrexcluding other partitions under/usrpath.I used
-Xoption but it does not work :./dust -r /usr -X local -X X11R6=>/usr/localand/usr/X11R6are not excluded from disk size usage.@bootandy commented on GitHub (Feb 16, 2022):
-X ignores a directory. Try -x to limit to a single filesystem. It does close to what you ask but not quite the same thing.
Try running
dust -x /usrand see if that works for you.@lcheylus commented on GitHub (Feb 16, 2022):
Thanks, it works as attended with
-xflag to limit to a single filesystem.