Clean up bash comments.

This commit is contained in:
jkaplon 2015-09-15 11:02:57 -04:00
parent a160499506
commit fed4ef6624

View File

@ -1,5 +1,9 @@
#!/bin/bash
# Call this script from a cron job:
# MAILTO=jody@kaplon.us
# 0,30 * * * * ~/dead-man-qry.bash
NUMHRS=6
# set now variable
@ -7,9 +11,6 @@ NOW=$(date -u +"%Y-%m-%d %H:%M:%S")
RESULT=$(sqlite3 /var/www/tenniscourtsopen.com/courtsopen.db "select published_at from Alerts where datetime(published_at) > datetime('${NOW}', '-${NUMHRS} hours') order by datetime(published_at) limit 1")
# this returns expected string!!!
# echo $RESULT
if [ -z "$RESULT" ]; then
echo "No data from device in last $NUMHRS hours."
fi