Skip to content

Instantly share code, notes, and snippets.

@miroslavtamas
Created December 7, 2018 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miroslavtamas/d68d6da3ff9073d733c3b75aa9297145 to your computer and use it in GitHub Desktop.
Save miroslavtamas/d68d6da3ff9073d733c3b75aa9297145 to your computer and use it in GitHub Desktop.
Find files bigger than given threshold and print out its name and size
find . -type f -size +50000k -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