mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #278] Bare view and intermediate results? #121
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 @brontosaurusrex on GitHub (Dec 2, 2022).
Original GitHub issue: https://github.com/bootandy/dust/issues/278
I'd like to have a single --bare switch that mimics this
dust -c -b -d 1 . | sed "s/[^[:alnum:]+-. ]//g"dust is incredibly fast, but still on huge trees there is some waiting game, it would be helpful if intermediate results are shown (unsorted, maybe with some rules like show only stuff bigger than). My try at such behavior.
@bootandy commented on GitHub (Jan 4, 2023):
I want to do a better job supporting screen-readers see here: https://github.com/bootandy/dust/issues/270 - This might fit well with your 'bare' mode. For now I suggest you alias dustbare='dust -c -b -d 1 . | sed "s/[^[:alnum:]+-. ]//g"'
I'm going to close this but I might come back to the bare mode.