|
CRON. du script sends mail |
Important to monitor disk useage:
d=`date +'%m-%d'` folder='/_scripts/_logs/du' du -sm /var_www/* | awk ' $1 > 20 { print $0 } ' > $folder/du-$d.log mail
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
-s "du"< $folder/du-$d.log
|