Skip to content

Instantly share code, notes, and snippets.

@luisinder
Created January 14, 2016 15:58
Show Gist options
  • Save luisinder/7e30903dedb6f8cc6913 to your computer and use it in GitHub Desktop.
Save luisinder/7e30903dedb6f8cc6913 to your computer and use it in GitHub Desktop.
Search files with size bigger than 25MB
find /var/www/ -type f -size +25000k -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