Guest User

Untitled

a guest
Oct 19th, 2017
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #!/bin/bash
  2. df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
  3. do
  4. usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
  5. partition=$(echo $output | awk '{ print $2 }' )
  6. if [ $usep -ge 85 ]; then
  7. echo "VW Heritage : Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
  8. mail -s "Alert: Almost out of disk space $usep%" email@example.com,email2@example.com
  9. fi
  10. done
Add Comment
Please, Sign In to add comment