Skip to content

Instantly share code, notes, and snippets.

@bgta
Created November 26, 2017 08:15
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 bgta/043820bde2d1ea4589b7a0a910329cd9 to your computer and use it in GitHub Desktop.
Save bgta/043820bde2d1ea4589b7a0a910329cd9 to your computer and use it in GitHub Desktop.
Send a Telegram message using telegram-cli when low disk detected
#!/bin/env bash
FREE=`df --output=pcent -h "/dev/sdc1" | sed '1d;s/[^0-9]//g'`
if [[ $FREE -gt 98 ]]; then
# more than 98% used
echo "ALERT! More than 98% used"
telegram-cli -W -e "msg YOURCHANNEL ALERT! More than 98% used!"
fi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment