Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
- do
- usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
- partition=$(echo $output | awk '{ print $2 }' )
- if [ $usep -ge 85 ]; then
- echo "VW Heritage : Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
- mail -s "Alert: Almost out of disk space $usep%" [email protected],[email protected]
- fi
- done
Add Comment
Please, Sign In to add comment