Skip to content

Instantly share code, notes, and snippets.

@PauloLuan
Created September 27, 2024 13:16
Show Gist options
  • Save PauloLuan/104d927b045fe955d7e7bd266b86eb39 to your computer and use it in GitHub Desktop.
Save PauloLuan/104d927b045fe955d7e7bd266b86eb39 to your computer and use it in GitHub Desktop.
check_file_size_mac.sh
## To find the largest 10 files (linux/bash):
find . -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}
## To find the largest 10 directories:
find . -type d -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment