Last active
August 29, 2015 14:08
-
-
Save owise1/fb0a1bf759ecc2f97f87 to your computer and use it in GitHub Desktop.
Show Big Files
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 | |
# -s - look for smaller files | |
size=100000 | |
while getopts s ARG; do | |
case "$ARG" in | |
s) shift | |
size=10000;; | |
esac | |
done | |
find $1 -xdev -maxdepth 10 -size +$size -exec ls -lh {} + | awk '{ print $5 " " $9 }' | sort -k 1 -n -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment