Skip to content

Instantly share code, notes, and snippets.

@dcbark01
Created March 28, 2024 18:08
Show Gist options
  • Save dcbark01/760b17a38701ed2c02e016d8e15f1b29 to your computer and use it in GitHub Desktop.
Save dcbark01/760b17a38701ed2c02e016d8e15f1b29 to your computer and use it in GitHub Desktop.
File/dir size
# For directory
du -h ./ | sort -hr | head -n 10
# For the largest files within a given directory and its subdirectories
find ./ -type f -exec du -h {} + | sort -hr | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment