Skip to content

Instantly share code, notes, and snippets.

@vinniefranco
Created January 17, 2012 23:47
Show Gist options
  • Save vinniefranco/1629828 to your computer and use it in GitHub Desktop.
Save vinniefranco/1629828 to your computer and use it in GitHub Desktop.
Find files bigger than 10MB
find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
@weotch
Copy link

weotch commented Jul 16, 2012

MediaTemple is:

find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

FYI

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment