|  |  | 
| EnderUNIX tipsMail to My Friend , Home Page[ Shell Scripting ] "FILE SYSTEM CAPACITY ALERT" - Ülkü SAYILAN - (2003-12-10 23:14:33) [4018] FILE SYSTEM CAPACITY ALERT #!/bin/sh # This script can be used to # warn the users that # the file system is getting full # # Script needs adjusted for your # needs. Below is set to monitor # all the file systems mounted and report to # RECEIVER # # Usage: as a cron entry for best use. RECEIVER=ulku@cwazy.cu for fs in `df -k|awk '{print $1}'|sed -n "3,14 p"` do x=`df -kl | grep $fs | awk '{ print $5 }'` y=50% if [ $x -gt $y ] then message="File System `df -k |grep $fs |awk '{print $6\", \"$5}'` Full!!!" echo $subject echo $message | mailx -s "`hostname` - File System Full Warning !!!" $RECEIVER fi done Mail to My Friend , Home Page |  |