Skip to content

Instantly share code, notes, and snippets.

@shov
Created June 5, 2017 08:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shov/1f32e374ead91a6b08e7152ebfa11aee to your computer and use it in GitHub Desktop.
Save shov/1f32e374ead91a6b08e7152ebfa11aee to your computer and use it in GitHub Desktop.
Looking for 10 biggest dir and file
#!/bin/bash
echo "Dirs"
du -hsx * | sort -rh | head -10
echo "Files"
find . -type f -printf '%s %p\n'| sort -nr | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment