Skip to content

Instantly share code, notes, and snippets.

@TheFrankman
Created October 18, 2017 11:24
Show Gist options
  • Save TheFrankman/8e2aba7f79014a582dc3e25830d8e7cf to your computer and use it in GitHub Desktop.
Save TheFrankman/8e2aba7f79014a582dc3e25830d8e7cf to your computer and use it in GitHub Desktop.
Email disk space alerts
#!/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@example.com,email2@example.com
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment