Skip to content

Instantly share code, notes, and snippets.

@Prozi
Created January 29, 2024 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Prozi/e8bf94a050a29fdc8a0a0c6d8a606ac7 to your computer and use it in GitHub Desktop.
Save Prozi/e8bf94a050a29fdc8a0a0c6d8a606ac7 to your computer and use it in GitHub Desktop.
linux dir content size
alias dirsize="du --max-depth=1 -k * | sort -nr | cut -f2 | xargs -d '\n' du -sh"
@Prozi
Copy link
Author

Prozi commented Jan 31, 2024

this works on macos alias dirsize="du -d 1 -k * | sort -nr" in KB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment