Created
June 5, 2017 08:29
-
-
Save shov/1f32e374ead91a6b08e7152ebfa11aee to your computer and use it in GitHub Desktop.
Looking for 10 biggest dir and file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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