Last active
March 26, 2024 08:05
-
-
Save henno/180c1fc9bbb74606062e6458c990f934 to your computer and use it in GitHub Desktop.
Disk Usage of Directory Items with Sizes Sorted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
find . -maxdepth 1 -mindepth 1 -exec du -sh {} \; 2>/dev/null | sort -h | sed 's|\./||' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment