Skip to content

Instantly share code, notes, and snippets.

@vdudouyt
Last active August 29, 2015 14:05
Show Gist options
  • Save vdudouyt/cb376ef1bc471cc0d9b6 to your computer and use it in GitHub Desktop.
Save vdudouyt/cb376ef1bc471cc0d9b6 to your computer and use it in GitHub Desktop.
#!/bin/bash
with_notify_on_fail() {
email=$1
LANG=en_US.UTF-8 date=`date`
shift
$@
if [[ $? != 0 ]]
then
echo Sending notification to $email
sendmail -t <<BLOCK
To: $email
Subject: fail notification
Content-type: text/plain
The following command failed at $date:
$@
BLOCK
fi
}
with_notify_on_fail "[email protected]" false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment