Skip to content

Instantly share code, notes, and snippets.

@JoeyBurzynski
Created May 1, 2016 19:35
Show Gist options
  • Save JoeyBurzynski/ef84a1911978d40229316d18e93afd0a to your computer and use it in GitHub Desktop.
Save JoeyBurzynski/ef84a1911978d40229316d18e93afd0a to your computer and use it in GitHub Desktop.
Linux: Find All Files/Directories Over 100MB
du --all --one-file-system / | awk '{if($1 > 102400) print int($1/1024) "MB" " " $2 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment