Created
July 9, 2015 02:55
-
-
Save drzax/53db1fb55090df3ef18b to your computer and use it in GitHub Desktop.
Quick and dirty site change monitoring
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 | |
while [ 1=1 ]; do | |
wget seattletimes.com -O st.html | |
git commit -a -m "Registered update" | |
sleep 600 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment