vote up 3 vote down star
2

I have an alert script that I am trying to keep from spamming me so I'd like to place a condition that if an alert has been sent within, say the last hour, to not send another alert. Now I have a cron job that checks the condition every minute because I need to be alerted quickly when the condition is met but I don't need to get the email every munite until I get the issue under control. What is the best way to compare time in bash to accomplish this?

flag

3 Answers

vote up 9 vote down check

By far the easiest is to store time stamps as modification times of dummy files. GNU touch and date commands can set/get these times and perform date calculations. Bash has tests to check whether a file is newer than (-nt) or older than (-ot) another.

For example, to only send a notification if the last notification was more than an hour ago:

touch -d '-1 hour' limit
if [ limit -nt last_notification ]; then
    #send notification...
    touch last_notification
fi
link|flag
vote up 3 vote down

Use "test":

if test file1 -nt file2; then
   # file1 is newer than file2
fi

EDIT: If you want to know when an event occurred, you can use "touch" to create a file which you can later compare using "test".

link|flag
Thanks, I was not aware of the -nt bit. I could create a file when the alert is first tripped and delete it when the condition recovers (In that case I could just check for existence). Any idea how I could implement the 'if it has been at least an hour throw the alert again' bit? – Ichorus Oct 15 '08 at 17:46
I believe @Bruno answered that. – JesperE Oct 16 '08 at 8:36
vote up 1 vote down

Use the date command to convert the two times into a standard format, and subtract them. You'll probably want to store the previous execution time in a dotfile then do something like:

last = cat /tmp/.lastrun
curr = date '+%s'

diff = $(($curr - $last))
if [ $diff -gt 3600 ]; then
    # ...
fi

echo "$curr" >/tmp/.lastrun

(Thanks, Steve.)

link|flag
Why not just use seconds since the epoch (%s)? 3600 seconds in an hour. – Steve Baker Oct 15 '08 at 17:53
Because although I thought that option existed, I kept overlooking it... – jonathan-stafford Oct 15 '08 at 17:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.