######################################################################
#!/bin/bash
errorString='SC-001'
recipient="xxsyntax@gmail.com"
sleepTime=10
logFile='/var/log/program/log'
x=1
while [ $x -gt 0 ]
do
checkLog=`tail $logFile | grep $errorString`
if [[ $checkLog == *$errorString* ]]
then
echo "Error found, sending an email."
echo "$checkLog" | mail -s "Alert: $errorString" $recipient
sleep $(( $sleepTime * 60 ))
fi
done
######################################################################