Skip to content

Instantly share code, notes, and snippets.

@jarrad
Last active August 29, 2015 14:15
Show Gist options
  • Save jarrad/020632bcffd1afc8c787 to your computer and use it in GitHub Desktop.
Save jarrad/020632bcffd1afc8c787 to your computer and use it in GitHub Desktop.
find large files from the shell
find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $0 ": " $5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment