Skip to content

Instantly share code, notes, and snippets.

@arturoherrero
Created October 11, 2017 15:40
Show Gist options
  • Save arturoherrero/72914fe9651b4a3849b2acfa0ee27f46 to your computer and use it in GitHub Desktop.
Save arturoherrero/72914fe9651b4a3849b2acfa0ee27f46 to your computer and use it in GitHub Desktop.
Send an email alert when the disk space gets low
#!/bin/bash
CURRENT=$(df /dev/sda | grep / | awk '{ print $5}' | sed 's/%//')
THRESHOLD=95
if [ "$CURRENT" -ge "$THRESHOLD" ]; then
echo "Subject: Disk space critical: $THRESHOLD% used" | /usr/sbin/sendmail -v your@email.com
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment