Skip to content

Instantly share code, notes, and snippets.

@fvztdk
Created June 4, 2019 15:08
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 fvztdk/cdd9f291e585f16b7893b7643f7321b1 to your computer and use it in GitHub Desktop.
Save fvztdk/cdd9f291e585f16b7893b7643f7321b1 to your computer and use it in GitHub Desktop.
Find the 50 biggest files over 100mb on linux, sort by size
#run as root
find / -xdev -type f -size +100M -exec du -sh {} ';' | sort -rh | head -n50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment