Last active
February 11, 2018 22:53
-
-
Save djromero/2df1d5dde6de010ea36d to your computer and use it in GitHub Desktop.
Send email and tweet when a web page changes in bash.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# inspired in "Monitoring a web page for changes using bash" | |
# http://bhfsteve.blogspot.com.es/2013/03/monitoring-web-page-for-changes-using.html | |
# monitor.sh - Monitors a web page for changes | |
# sends an email notification and a tweet if the file changes | |
# requirements: | |
# - twitter from the command line [https://github.com/sferik/t] | |
# gem install t | |
# - sendemail | |
# sudo apt-get install libio-socket-ssl-perl libcrypt-ssleay-perl libnet-ssleay-perl | |
# sudo apt-get sendemail | |
URL="http://example.com/monitored/page.html" | |
TO="[email protected] [email protected]" | |
HANDLER="@user @friend" | |
USERNAME="[email protected]" | |
PASSWORD="secret!" | |
while true ; do | |
if [ -f new.html ] ; then | |
mv new.html old.html 2> /dev/null | |
fi | |
curl -s $URL -L --compressed > new.html | |
# for better results add a grep to exclude lines that always change (like a date, etc.) | |
# | egrep -v 'this|that' | |
DIFF_OUTPUT=`diff --suppress-common-lines -y new.html old.html` | |
if [ "x" != "x${DIFF_OUTPUT}" ] ; then | |
t update "${HANDLER} hey, the webpage $URL just changed" | |
sendEmail \ | |
-t $TO \ | |
-f $USERNAME \ | |
-s smtp.gmail.com:587 -xu $USERNAME -xp $PASSWORD \ | |
-o tls=yes \ | |
-u "The page changed" \ | |
-m "Visit it at $URL\n\n${DIFF_OUTPUT}" | |
fi | |
sleep 300 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is awesome. How or where do I implement this code?