Skip to content

Instantly share code, notes, and snippets.

@fy-kenny
Forked from fduran/gist:1870429
Created April 26, 2018 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fy-kenny/09deb8f13d83ded8fc5e2f05ee925ba1 to your computer and use it in GitHub Desktop.
Save fy-kenny/09deb8f13d83ded8fc5e2f05ee925ba1 to your computer and use it in GitHub Desktop.
Linux disk space email alert
#!/bin/bash
# www.fduran.com
# script that will send an email to EMAIL when disk use in partition PART is bigger than %MAX
# adapt these 3 parameters to your case
MAX=95
EMAIL=alert@example.com
PART=sda1
USE=`df -h |grep $PART | awk '{ print $5 }' | cut -d'%' -f1`
if [ $USE -gt $MAX ]; then
echo "Percent used: $USE" | mail -s "Running out of disk space" $EMAIL
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment