Skip to content

Instantly share code, notes, and snippets.

@owise1
Last active August 29, 2015 14:08
Show Gist options
  • Save owise1/fb0a1bf759ecc2f97f87 to your computer and use it in GitHub Desktop.
Save owise1/fb0a1bf759ecc2f97f87 to your computer and use it in GitHub Desktop.
Show Big Files
#!/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