Skip to content

Instantly share code, notes, and snippets.

@visualdensity
Last active August 8, 2018 04:42
Show Gist options
  • Save visualdensity/63c5f185bcad7d04f86edcaeec96201d to your computer and use it in GitHub Desktop.
Save visualdensity/63c5f185bcad7d04f86edcaeec96201d to your computer and use it in GitHub Desktop.
# Largest filesize in current dir
du -hs * | sort -rh | head -5
# Largest directory
du -Sh | sort -rh | head -5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment