Skip to content

Instantly share code, notes, and snippets.

@pop3xrj
Created September 11, 2009 00:17
Show Gist options
  • Save pop3xrj/184943 to your computer and use it in GitHub Desktop.
Save pop3xrj/184943 to your computer and use it in GitHub Desktop.
find large file under linux (ubuntu)
find . -type f -size +20000k -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