Skip to content

Instantly share code, notes, and snippets.

@rugbyprof
Created April 24, 2013 17:43
Show Gist options
  • Save rugbyprof/5454027 to your computer and use it in GitHub Desktop.
Save rugbyprof/5454027 to your computer and use it in GitHub Desktop.
find large files on linux box
find {/path/to/directory} -type f -size +{file-size-in-kb}k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment