/ Published in: Bash
Allows you to send out a email listing all files over 10MB.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
cd / ; find . -size '+10000k' -exec ls -Shl {} \; | mail -s"disk usage over 10MB" email@address.com