Advertisement
fduran

Linux disk space email alert

Apr 18th, 2011
909
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. #!/bin/bash
  2. # www.fduran.com
  3. # script that will send an email to EMAIL when disk use in partition PART is bigger than %MAX
  4. # adapt these 3 parameters to your case
  5. MAX=95
  6. EMAIL=alert@example.com
  7. PART=sda1
  8.  
  9. USE=`df -h |grep $PART | awk '{ print $5 }' | cut -d'%' -f1`
  10. if [ $USE -gt $MAX ]; then
  11.   echo "Percent used: $USE" | mail -s "Running out of disk space" $EMAIL
  12. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement