Skip to content

Instantly share code, notes, and snippets.

@madeinnordeste
Created February 3, 2017 14:18
Show Gist options
  • Save madeinnordeste/d2ce8f19d74099eccb78c4aa97cf7068 to your computer and use it in GitHub Desktop.
Save madeinnordeste/d2ce8f19d74099eccb78c4aa97cf7068 to your computer and use it in GitHub Desktop.
Find large files in linux
find . -type f -size +500M -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment