Skip to content

Instantly share code, notes, and snippets.

@shawnbutts
Created August 13, 2012 17:24
Show Gist options
  • Save shawnbutts/3342599 to your computer and use it in GitHub Desktop.
Save shawnbutts/3342599 to your computer and use it in GitHub Desktop.
find files larger than 2GB in and below current directory
find . -type f -size +2000000k -exec ls -lh {} \; | awk '{ {for (i = 9; i <= NF; i++)printf("%s ", $i);} print ": " $5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment